Code: Select all
Line 12: 'For' doesn't support quad variables.

Code: Select all
Line 12: 'For' doesn't support quad variables.
yeah, my bad, as "n" would still not be any larger then an integer anyway. What was I thinking.MachineCode wrote:"n" is the result of FileSize() for an 8 GB file, so... no.
MachineCode wrote:Not sure how to get around it.The code is: "For a.q=1 To n", where "n" = a quad value.
Code: Select all
a.q = 1
n.q = 10
While a <= n
;
Debug a
;
a+1
Wend
Code: Select all
a.q = $FFFFFFFFFFFA
#n = $FFFFFFFFFFFF
While a <= #n
;
Debug a
;
a+1
Wend