Hello, just upgraded from VFP 6 to 9 today and have come across something really wierd.
The following code
enc_str = ''
for i=255 to 1 step -1
enc_str=enc_str + chr(i)
endfor
Returns a totally different result when run in VFP 9.0 then when it runs in VFP 6.0.
Would anybody know the cause of this.
The following code
enc_str = ''
for i=255 to 1 step -1
enc_str=enc_str + chr(i)
endfor
Returns a totally different result when run in VFP 9.0 then when it runs in VFP 6.0.
Would anybody know the cause of this.