Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Protected Overrides Sub OnClosing(ByVal e As System.ComponentModel.CancelEventArgs)
If MsgBox("Are you sure you want to exit?", MsgBoxStyle.YesNo, MsgBoxStyle.DefaultButton2, MsgBoxStyle.Exclamation) = MsgBoxResult.No Then
e.Cancel = True
End If
End Sub