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 lblLabel1 As Label
Private Sub Command1_Click()
Set lblLabel1 = Form1.Controls.Add("VB.label", "lblLabel1")
lblLabel1.Top = 0
lblLabel1.Left = 0
lblLabel1.Caption = "this is label1"
lblLabel1.Visible = True
End Sub