Important Notice: Our web hosting provider recently started charging us for additional visits, which was unexpected. In response, we're seeking donations. Depending on the situation, we may explore different monetization options for our Community and Expert Contributors. It's crucial to provide more returns for their expertise and offer more Expert Validated Answers or AI Validated Answers. Learn more about our hosting issue here.

How can I get ride of the images dialog at design time?

design dialog images ride time
0
Posted

How can I get ride of the images dialog at design time?

0

The control provides a property ShowImageList that shows or hides that images list. By default, the property is True, to let new customers know that they can drag images without using an ImageList control. If you are going to add icons at runtime the control provides Images and ReplaceIcon methods. The Images method takes the handle to an ImageList control. The ReplaceIcon method works like follows: • ( Icon, -1) method. Adds a new icon to control’s image list, and retrieves the index of the image. Sample: .ReplaceIcon Image1.Picture.Handle, adds a new icon to the end of the control’s image list, .ReplaceIcon LoadPicture(“D:\Icons\help.ico”).Handle adds a new icon, loads the icon from a file, and adds it to control’s image list • ReplaceIcon( Icon, n ) ( where n >= 0 ) method. Replaces an icon to control’s image list. Sample: .ReplaceIcon Image1.Picture.Handle, 0 replaces the first icon in the control’s image list • ReplaceIcon( 0, n ) (where n>= 0 ) method. Removes an icon given its i

Related Questions

What is your question?

*Sadly, we had to bring back ads too. Hopefully more targeted.

Experts123