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.
Option Explicit
Private Sub Command1_Click()
Load Frame1(1)
With Frame1(1)
.Top = Frame1(0).Top + Frame1(0).Height
.Left = Frame1(0).Left + Frame1(0).Width
.Visible = True
End With
Load Option1(1)
With Option1(1)
[blue]Set .Container = Frame1(1)[/blue]
.Top = 200
.Left = 100
.Visible = True
End With
End Sub