Once you deploy your AdvancedHMI application, you will not want the users to access the desktop and change settings. To setup AdvancedHMI for this, follow these steps:
- Open your MainForm in design view
- Click anywhere in a blank area on the form
- In the properties window, set FormBorderStyle to None
- Set the WindowState to maximized
You may want to add a secret way to exit the application for updating. This is a technique I use:
- Leave the AdvancedHMI picture box on the form
- Select the PictureBox
- In the Properties Window, click on the lightening bolt to get to the events
- In the space after DoubleClick, double click
- You should now be back to the code view, enter the following code:
Close()
Once your application is running, you can now double click the logo to close the application.