Not sure if something like this is even possible, but I thought I would ask:
I have a frame (name = "fraPicture") in a userform that when my userform loads I would like this frame to load a picture that is located in a specific folder (via hyperlink, I think?)
Ideally, I would like it to work like this (again, if its even possible):
Where "29" is the cell location where the address to the picture is located, and fraPicture is the name of the frame where I want the picture to populate when the userform loads.
The address for the picture that is inside cell 'RecordRow, 29' looks like this: J:\QMS_General Facility\INCIDENT LOGS\Incident_Pictures\22.1191.bmp
Can something like this be done, or would I have to have the picture itself not located in a separate folder like I do now, but inside the cell in the spreadsheet itself?
Thanks for any help or suggestions to accomplish this in another way if what I am proposing cant be done or if there is a better way.
I have a frame (name = "fraPicture") in a userform that when my userform loads I would like this frame to load a picture that is located in a specific folder (via hyperlink, I think?)
Ideally, I would like it to work like this (again, if its even possible):
VBA Code:
With ws
.Cells(RecordRow, 29).value = Me.fraPicture.Picture
End With
Where "29" is the cell location where the address to the picture is located, and fraPicture is the name of the frame where I want the picture to populate when the userform loads.
The address for the picture that is inside cell 'RecordRow, 29' looks like this: J:\QMS_General Facility\INCIDENT LOGS\Incident_Pictures\22.1191.bmp
Can something like this be done, or would I have to have the picture itself not located in a separate folder like I do now, but inside the cell in the spreadsheet itself?
Thanks for any help or suggestions to accomplish this in another way if what I am proposing cant be done or if there is a better way.