...but today, this program crashed on a "normal" windows XP PC. I used the debugger to find, that the following code was the reason for the problem:
Code: Select all
Procedure.s StringMid(*Adresse,Start,Laenge)
#MaxString=1<<30
If *Adresse
If Laenge
ProcedureReturn PeekS(*Adresse+Start,Laenge)
EndIf
EndIf
ProcedureReturn ""
EndProcedureA change to #MaxString=1<<29 was all I had to do to get rid of the crashes
