Code:
LOCAL X() AS whatever
NOte: you may need to physically place a REDIM statement prior to any use of X() in the procedure to avoid an 'array not dimensioned' error. (I never figured out the actual rules used). But that's easy enough...
Code:
FUNCTION Foo ( ...... LOCAL X() AS whatever LOCAL I, J, K AS LONG ... ' == END VARIABLE DECLARATIONS, START CODE ==== REDIM X(0) ' REAL CODE STARTS HERE ....
Leave a comment: