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 Sub Command1_Click()
Dim picbox
Set picbox = Me.Controls.Add("VB.PictureBox", "PIC1")
picbox.Move 0, 0, 100, 100
picbox.Visible = True
End Sub
Private Sub Command2_Click()
Dim myitem As Control
For Each myitem In Me.Controls
If TypeOf myitem Is PictureBox Then
If Left(myitem.Name, 3) = "PIC" Then Me.Controls.Remove (myitem.Name)
End If
Next
End Sub
Private Sub Command3_Click()
Dim myitem As Control
For Each myitem In Me.Controls
If TypeOf myitem Is PictureBox Then
If Left(myitem.Name, 3) = "PIC" Then myitem.Visible = False
End If
Next
End Sub
Private Sub Command4_Click()
Dim myitem As Control
For Each myitem In Me.Controls
If TypeOf myitem Is PictureBox Then
If Left(myitem.Name, 3) = "PIC" Then myitem.Move -5000, -5000
End If
Next
End Sub