Hi people,
I'm quite new to EB (in fact haven't programmed for 10 years!). I have written some quite sophisticated scripts recently but am now struggling with multi dimensional arrays! I have used single level successfully.
I thought that the declaration would be something like:
And the usage would be:
But it won't compile
Advice please.
I'm quite new to EB (in fact haven't programmed for 10 years!). I have written some quite sophisticated scripts recently but am now struggling with multi dimensional arrays! I have used single level successfully.
I thought that the declaration would be something like:
Code:
dim array1(50,50) as string
dim array2(50,50) as double
Code:
For x = 1 to 50
For y = 1 to 50
array1(x,y) = "XXX"
array2(x,y) = 99.99
Next y
Next x
Advice please.