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.
Private Declare Function SetParent Lib "user32" (ByVal hWndChild As Long, ByVal hWndNewParent As Long) As Long
Private Sub MDIForm_Load()
Form1.Show
Form2.Show
Form3.Show vbModeless, Me
SetParent Form3.hwnd, Me.hwnd
End Sub