A common control, such as a TreeView or a ListView, can use an ImageList control placed on a form different from the current one. This is useful when many forms in your application contain an ImageList control with the same images.
Instead of using multiple ImageList controls, you can gather all your images into one ImageList control placed (if possible) on a form that’s always loaded, such as the main form in your application. Assign that ImageList control at run time to the ImageList property of other controls:
Private Sub Form_Load() Set TreeView1.ImageList = frmMain.ImageList1 Set ListView1.ImageList = frmMain.ImageList1End Sub
This approach lets you save some space in the compiled EXE file and use fewer resources at run time.
Charlie has over a decade of experience in website administration and technology management. As the site admin, he oversees all technical aspects of running a high-traffic online platform, ensuring optimal performance, security, and user experience.























