Scaled window mode

Blitz3D Forums/Blitz3D Beginners Area/Scaled window mode

My program is running in scaled window mode, but when it starts it's very small and hard to make out much detail. I need it to run in this mode, but would prefer if it started out maxed or at least a bit bigger. Is there a way I can set it manually when the program begins?

I just do this trick:
Graphics3D 800,600,0,2
Graphics3D 800,600,0,3


While Not KeyHit(1)
	Text 10,10,"Scalable & big!"
	Flip
	Cls
Wend


Thanks, don't know why that works but it does :)

How strange. I never knew that. How did you find that one out Sledge?

Jason.

It's so long ago that I don't remember. I'd like to think I made an educated guess but it's far more likely that I had a couple of graphics initialisation lines (in order to quickly swap between a couple of different options) and accidentally left two uncommented rather than just the desired one.