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 FRM as OpenFileForm
FRM = New OpenFileForm
FRM.TopLevel = False
Me.Panel1.Controls.Add(FRM)
FRM = New OpenFileForm
FRM.TopLevel = False
Me.Panel1.Controls.Add(FRM)
Private Sub Button3_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button3.Click
Panel1.Controls.Add(NewForm())
End Sub
Private Function NewForm() As frmBypassWindow
Dim a As New frmBypassWindow()
Static intX As Integer = 0
Static IntY As Integer = 0
a.Top = intX
a.Left = IntY
intX += 20
a.Height = 20
a.Width = 30
a.BackColor = Color.White
a.TopLevel = False
a.Visible = True
a.Show()
Return a
End Function