Hi;
I neeed help with the following code to initialize:
How to assign values to elements of test1?
How to initialize test1 and assign some values?
Best Regards,
M.Kol
I neeed help with the following code to initialize:
Code:
Structure test1 <VBFixedArray(6)> Dim Id() As string public sub initializetest1 ReDim Id(6) end sub End structure Dim myvalues() as test1 '. '. ReDim myvalues(10)
Code:
dim i as short=0 to 10 myvalues(i).Id(1)="V" myvalues(i).Id(2)="H" '. myvalues(i).Id(6)="J" next i
Best Regards,
M.Kol
Comment