How can I get ride of the images dialog at design time?
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