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.
[COLOR=blue]Public Sub LoadImages(iList As ImageList, strPath As String, strPattern As String)
Dim myfile As String
myfile = Dir(strPath & strPattern)
Do Until myfile = ""
ImageList1.ListImages.Add , myfile, LoadPicture(strPath & myfile)
myfile = Dir
Loop
End Sub[/color]
[COLOR=blue]LoadImages ImageList1, "c:\mydirimage\", "*.jpg"[/color]