I found a little BUG with Stringvariables.
Better I show what I mean, 'cause my english is not the best.
In this code, I get a "Invalid memory access" on the line with "Debug DuTmp.s".
Code: Select all
; Just a testcode without other usability.
Procedure TestProc()
testing.l=#True
If testing.l=#True
test.s="This is a little test"
For x=0 To 10
UnTmp.s=PeekS (@test+x,1)
If Asc(UnTmp.s) <65
DuTmp.s = PeekS(@test+x,1)
EndIf
Debug DuTmp.s
Debug UnTmp.s
Next x
EndIf
EndProcedure
TestProc()
Thank you.