Report Bugs Here

Moderator: Mmiscool

User avatar
By Mmiscool
#51991 The following should work but i have not tested.

If you are making a string array it must end with a $ as shown below. Numeric arrays must not end with a $.

Code: Select alldim bla$(10)
'fill array with stuff
for x = 1 to 10
   bla$(x) = str(x) & " is my loop no"
next x

'print stuff from array
for x = 1 to 10
   print bla$()
next x