csr
Programmer
- Jul 20, 2000
- 507
I have a report which makes use of an array called ...
aLabels.
The first place I mention this array is in a CONTINUE button on a form which leads to that report.
This is the code in the CLICK method of that CONTINUE button.
dimension aLabels[20,5]
for j = 1 to 20
for k = 1 to 5
aLabels[j,k] = ''
endfor
endfor
Everything works just fine. However, each time I generate the EXE I get the warning: UNABLE TO FIND UNKNOWN aLabels .... at which time I simply IGNORE and everything is fine.
I know I should declare this array as EXTERNAL somewhere.
Where should I do that and what would be the SYNTAX for this ?
Thanks.
Don
aLabels.
The first place I mention this array is in a CONTINUE button on a form which leads to that report.
This is the code in the CLICK method of that CONTINUE button.
dimension aLabels[20,5]
for j = 1 to 20
for k = 1 to 5
aLabels[j,k] = ''
endfor
endfor
Everything works just fine. However, each time I generate the EXE I get the warning: UNABLE TO FIND UNKNOWN aLabels .... at which time I simply IGNORE and everything is fine.
I know I should declare this array as EXTERNAL somewhere.
Where should I do that and what would be the SYNTAX for this ?
Thanks.
Don