I'm having VFP problems with code using arrays. On one machine, the following code runs successfully:
DIMENSION array[20]
FOR x = 1 TO 5
array[x] = RAND()
ENDFOR
clear
?? array[1]
?? array[2]
?? array[3]
?? array[4]
?? array[5]
?
FOR i = 1 TO ALEN(array)
?? array[i] && sometime...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.