Possible Duplicate:
Making Winforms Fullscreen
I am making a VB Form that i want to run in full screen, as in covering the start menu and task bar. right now i am using
Me.Size = SystemInformation.PrimaryMonitorSize
Me.WindowState = 2
Me.Location = New Point(0, 0)
Me.TopMost = True
Me.FormBorderStyle = 0
but the start menu still shows. I am assuming this is because the window is just maximized and not really in "full screen"
is there any way i can cover the start menu in vb to make the program run in full screen?