cant i use icons for picture in a pictureclip control?
Printable View
cant i use icons for picture in a pictureclip control?
i have the same problem
cant i use an icon for my picture clip control???????
The PictureClip doesn't support the Icon format, you can work around it though, by first loading the Icon into a Picturebox, then Using the Image of the Picturebox as the Picture Source for the PictureClip, ie.
private Sub Command1_Click()
Picture1.AutoSize = true
Picture1 = LoadPicture("..\Common\Graphics\Icons\Computer\CDROM01.ico")
PictureClip1.Picture = Picture1.Image
End Sub
Aaron Young
Analyst Programmer
[email protected]
[email protected]