A
alvis
i have a type (see partial below)
after i create a varable dim pfile as tloanset. is there a way that i can
dynamicly load the new variable i want to do something like this
for i = 0 to ubound(pfile)
pfile(i) = "xyx"
next i
i know that the code above does not work but i want a way to load the type
dynamicly is this possible?
Type tLoanSet
LoanNumber As String
TeamName As String
UserTeamName As String
IntRate As Double
startrate As Double
loanterm As Integer
AmortTerm As Integer
End Type
after i create a varable dim pfile as tloanset. is there a way that i can
dynamicly load the new variable i want to do something like this
for i = 0 to ubound(pfile)
pfile(i) = "xyx"
next i
i know that the code above does not work but i want a way to load the type
dynamicly is this possible?
Type tLoanSet
LoanNumber As String
TeamName As String
UserTeamName As String
IntRate As Double
startrate As Double
loanterm As Integer
AmortTerm As Integer
End Type