So far my program has been working fine and has been progressing well. To catch any unwanted bugs or leaks I decided to turn SuperStrict on and all hell broke loose. After what seemed an age of fixing code i still couldn't get it to work.
Here is a simple bit of code that throws and error for me. in SuperStrict mode but not in any other mode.
Error: Unable to convert from "int" to "TGadget"
Here is a simple bit of code that throws and error for me. in SuperStrict mode but not in any other mode.
Error: Unable to convert from "int" to "TGadget"
SuperStrict Local style:Int = WINDOW_TITLEBAR|WINDOW_RESIZABLE|WINDOW_MENU|WINDOW_STATUS Local MainWindow:TGadget MainWindow = CreateWindow("Test",200,200,800,600,0,style) Repeat WaitEvent() Select EventID() Case EVENT_WINDOWCLOSE End End Select Until KeyHit(KEY_ESCAPE)