Hi,
Is it possible to insert picture with code? For example:
Set Img = UserForm1.Controls.Add("Forms.Image.1")
With Img
'Load Picture to Image Control
.Picture = LoadPicture("C:\test.jpg")
'Align the Picture Size
.PictureSizeMode = fmPictureSizeModeStretch
'Image Position
.Left = 50
.Top = 10
End With
Regards,
Alex