sb / smallbasic-editor

Home to the Small Basic editor (beta)
https://smallbasic-publicwebsite-code.azurewebsites.net/
MIT License
101 stars 34 forks source link

GraphicsWindow.Title causes syntax error #163

Closed Ed-Price closed 4 years ago

Ed-Price commented 4 years ago

This code (the GraphicsWindow.Title method):

GraphicsWindow.Title = "Graphics Window"

Causes this error:

"The library member 'GraphicsWindow.Title' was available in older versions only, and has not been made available to this version yet."

This issue is filed to provide SBD parity. Many core workshops and tutorials use this code. Because of the error, you can't run the code.

Ed-Price commented 4 years ago

See also the related Issue 113:

https://github.com/sb/smallbasic-editor/issues/113

alxnull commented 4 years ago

@EdPrice-MSFT I would try to fix this issue but I'm unsure of the way to go. Instead of just ignoring all statements with GraphicsWindow.Title in the code I thought it might be better to emulate some sort of window title, e.g. like this:

grafik

What do you think?