Latest OxygenBasic.zip at GitHub (Click on the Wizard)
0 Members and 1 Guest are viewing this topic.
Watch out for multi-line strings. I have occasionally failed to close a quoted string, resulting in very strange behaviour. Code becomes string, and string becomes code...
'get position of first empty space ----------Epos = INSTR (LText," ")IF EPos <> 0 'get left from empty space c$ = Left(LText,Epos-1)ELSE 'get substring argument c$= Mid(Ltext,1,Len(Ltext))END IFc$ = Trim(c$)c$=Ucase(c$)