- Click on a blank area of your form
- In the Properties Window, change FormBorderStyle to None
You may also want to set WindowsState to Maximized. Those settings will not allow you to exit the application unless you use Alt-F4 on a keyboard or with Task manager. There is a trick I use to exit for updates. I leave the AdvancedHMI logo PictureBox on the form, then setup a double click to exit like this:
- Right click on a blank area of the form and select View Code
- Enter this code:
Private Sub PictureBox1_DoubleClick(sender As Object, e As EventArgs) Handles PictureBox1.DoubleClick
Close()
End Sub