[Done] BUGS-640a1 Len(r$)?, #myStr$+r$ CRASH
Posted: Sat Jan 24, 2026 6:51 pm
Ok, lots of errors in big apps.
Structures with string arrays seem corrupt.
Cannot post snippet until this simple code runs without errors.
Structures with string arrays seem corrupt.
Cannot post snippet until this simple code runs without errors.
Code: Select all
EnableExplicit
#VER$ = "26.01.24" ;-! -SET_VERSION
#SEMI$ = Chr(59): #SEMI = 59 ; ";"
#RPAREN$ = Chr(41): #RPAREN = 41 ; ")"
Global.s winTitle$ = "Version (" + #VER$ + #RPAREN$
Global.s r$ = #Empty$
Global.s r$ = Space(32)
r$ = "12345678223456783234567842345678523456786"
Global.i nPts
nPts = Len(winTitle$)
ShowMemoryViewer(@r$, 96)
CallDebugger
r$ = #SEMI$ + winTitle$ + #LF$
r$ + #SEMI$ + "len(winTitle$) = " + Str(nPts)
Debug r$