VBGamer |
|
RE: Few Newbie Q's Rag on a Stick (0 replies, 0 views) (2000-Oct-18) Fullscreen:
Change these properties on the form:
WindowState = 2 - Maximised
BorderStyle = 0 - None
That should make it nice and fullscreen. Since you will want to add controls to the form everywhere, I also recommend changing these:
'Do this one first
ScaleMode = 3 - Pixel
'Then these
Width = 800 'Or whatever the resoltion is
Height = 600 'Ditto
Or just resize the form so it is as big as possible =)
Q2:
In my last game (also non directX), I had different forms for everything, like the main menu, credits and game. It worked ok, and to the user, it didn't look like there were more than 1 windows, so it was fine. It is really a matter of preference, but it will be simpler if you use multiple forms imo.
hth |