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.
Dim sArea As System.Drawing.Rectangle
sArea = Screen.PrimaryScreen.WorkingArea()
'Bigger than Required?
If sArea.Height >= 768 And sArea.Width > 1024 Then
Me.Size = New Size(1024, 768)
Me.WindowState = FormWindowState.Normal
Me.CenterToScreen()
else
Me.WindowState = FormWindowState.Maximized
end if