|
-
January 20th, 2000, 04:14 PM
#1
my pictureclip control does not support icons
cant i use icons for picture in a pictureclip control?
-
January 21st, 2000, 10:10 AM
#2
Re: my pictureclip control does not support icons
-
January 21st, 2000, 02:58 PM
#3
please help my pictureclip controlt support icons
cant i use an icon for my picture clip control???????
-
January 21st, 2000, 03:32 PM
#4
Re: please help my pictureclip controlt support icons
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]
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|