Anyone can help..
How do we alter cetern value on spacific type without know their name. By using index for example.
This is example of using DIM
On the case of type I have some code like this:
How do we alter cetern value on spacific type without know their name. By using index for example.
This is example of using DIM
Dim Variable(100) For k=1 To 100 Variable(k)=Rand(1,100) Next Variable(33)=100
On the case of type I have some code like this:
Type Var Field Variable End Type For k=1 To 100 a.var=New Var a\Variable=Rand(1,100) Next a\Variable(33)=100 <---This not work