Question Cover whole screen including the taskbar

tukmolins

Member
Joined
Oct 21, 2011
Messages
12
Programming Experience
1-3
Hello. I want to make a form fullscreen and cover including the taskbar. Can anyone help me with this? Tnx in advance :)

[XCODE]

Private Sub Form1_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load


Me.FormBorderStyle = Windows.Forms.FormBorderStyle.None
Me.WindowState = FormWindowState.Maximized
Me.TopMost = True
End Sub
[/XCODE]
 
The two first lines of code you posted does what you ask for, it is commonly called 'fullscreen' or 'kiosk mode'.
 
Back
Top