April 2006
Beginner
1114 pages
98h 16m
English
control.Picture [= setting]
Sets or returns the picture loaded in the control. The picture can be set at design time in the Properties window or at runtime using the LoadPicture function. The following code displays a picture using the image control:
Private Sub UserForm_Initialize( )
Image1.Picture = LoadPicture(ThisWorkbook.Path & "\turtle.jpg")
Image1.PictureSizeMode = fmPictureSizeModeZoom
End SubRead now
Unlock full access