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.
Public Sub subLoadImageList()
Dim imgLstObject As ImageList
Set imgLstObject = Forms("frmNode").imgLstNodes.Object
imgLstObject.ImageHeight = 15
imgLstObject.ImageWidth = 15
imgLstObject.ListImages.Add 1, "SquadLdr", LoadPicture("C:\icons\SquadLdr.gif")
imgLstObject.ListImages.Add 2, "Selected", LoadPicture("C:\icons\check.ico")
imgLstObject.ListImages.Add 3, "UnSelected",
End Sub