I want to make a program like a game, in a full window, blocking out the start bar at the bottom of the screen. How do I do that?
Printable View
I want to make a program like a game, in a full window, blocking out the start bar at the bottom of the screen. How do I do that?
Hi,
VB Code:
With Me .WindowState = FormWindowState.Maximized .Text = "" .ControlBox = False End With