Been having some issues moving over to Win 10, got a few things resolved by updating my compiler (oops).
One thing that is still giving me issues is going fullscreen. In this case I press the Maximize box on the window and it shows it go into fullscreen but the window doesn't appear even when I alt-tab to it. After that I'm forced to end the process.
I'm running GFXLib or whatever the default FreeBasic graphics functions are, no OpenGL etc. I'm using ScreenRes 640,480,16,,0. I tried going fullscreen right away but no dice, gives tons of errors and keeps stealing focus so I have to get jiggy to shut it down.
Oddly, a separate execute is able to go fullscreen with no issues, despite the ScreenRes command being identical in both programs AND despite the ScreenRes function being the ONLY function to execute in my main program. (the only notable difference being I #include a .bi file which contains the ScreenRes function.)
Any easy solutions or bad news before I start delving into more tricky tests?
Thanks.
This works:
Code: Select all
ScreenRes 640,480,16,,1
Sleep
End
Code: Select all
ScreenRes 640,480,16,,1
Sleep
End