I am converting a vb program and it uses data structures. See sample below.
Does the package accommodate this or do I have to recode it without the structure?
Thanks,
With FinanceData
period = 12
textBoxPV.Text = putLabel(.tpv, 2)
End With
Dim Structure FinanceStruc
Dim tpv As Single
End Structure
Dim FinanceData As FinanceStruc
Does the package accommodate this or do I have to recode it without the structure?
Thanks,
With FinanceData
period = 12
textBoxPV.Text = putLabel(.tpv, 2)
End With
Dim Structure FinanceStruc
Dim tpv As Single
End Structure
Dim FinanceData As FinanceStruc