Create a new form, uncheck the "caption is a variable?" checkbox if it is per-default checked.
Write something into your caption like "Yo!" and compile. The program runs perfectly with the "Yo!" as a string in the OpenWindow () command.
Code:
Window_0 = OpenWindow(#PB_Any, x, y, width, height, "Yo!", #PB_Window_SystemMenu)
Store your file, close it and reload it.
Now the read code is interpreted as
Yo! being a varibale and the checkbox of this becomes checked.
Code:
Window_0 = OpenWindow(#PB_Any, x, y, width, height, Yo!, #PB_Window_SystemMenu)
Quote:
...Syntax error...
PB 5.72 Windows 10 x86