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
Dim nLastPic As Integer
Private Sub Form_Load()
nLastPic = picButtons.Count * 2
End Sub
Private Sub picButtons_Click(Index As Integer)
Dim nNumPics As Integer
picButtons(Index).Picture = LoadPicture("[i][path of picture you wish to use][/i]")
picButtons(nLastPic).Picture = LoadPicture("[i][path of standard button image][/i]")
nLastPic = Index
End Sub