Is there a way i can reference a picture box or image placeholder to load up a picture from the internet eg:
Any ideas would be very appreciated
Any ideas would be very appreciated
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.
[blue]Private Function GetPicFromHTTP(strURL As String, Optional Username As String, Optional Password As String) As StdPicture
Dim bytearray() As Byte
Inet1.URL = strURL
Inet1.Username = Username
Inet1.Password = Password
bytearray() = Inet1.OpenURL(, icByteArray)
Set GetPicFromHTTP = LoadImage(bytearray)
End Function[/blue]