Posted: Fri Sep 05, 2008 10:26 pm Post subject: Full Screen No Taskbar
I'm trying to get my program to cover the whole screen forcing the user to use the program itself to exit. I have found several codes online that are supposedly supposed to cover the taskbar. Neither have worked though. Any thoughts? Any help would be greatly appreciated.
These are the codes I have tried which have failed.
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
Me.Size = SystemInformation.PrimaryMonitorSize
Me.Location = New Point(0, 0)
Me.TopMost = True
End Sub