Hello
I've created an Excel 2016 User Form (UserForm1), and within that form, an image control (Image1). Using VBA, I can load images into the image control from a FILE, but I have not been able to load images from a Website (sharepoint)
Code
Private Sub CboMember_Change()
On Error Resume Next
If cboMember.Value <> "" Then
Me.Image1.Picture = LoadPicture("C:\Users\gbar\OneDrive - Ton Pty Ltd\Snagit" & cboMember.Value & ".JPG" & cboMember.Value & ".JPG")
End If
Exit Sub
End Sub
Display More
Here's the code that doesn't work... Any solutions?
Cheers,
Gilly