Fullscreen in VB.Net


/ Published in: VB.NET
Save to your folder(s)



Copy this code and paste it in your HTML
  1. Public Sub ShowFullscreen()
  2. Me.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None
  3. Me.WindowState = System.Windows.Forms.FormWindowState.Maximized
  4. Me.TopMost = True
  5. End Sub

Report this snippet


Comments


You need to login to view comments.