devxlogo

Assign Toolbar Button Images at Run Time

When developing applications, quite often you end up experimenting with different toolbar icons to test how well they serve their purpose. If you change an icon in an ImageList, you have to de-assign this ImageList from your toolbar and you lose all your image assignments. Instead of doing this repeatedly, use the same key values in your buttons and images.

Use this code to assign images to your buttons. For me it has been a time-saver:

 Dim myButton As ButtonOn Error Resume NextWith Toolbar1	.ImageList = ImageList1	For Each myButton In .Buttons		myButton.Image = myButton.Key	NextEnd With

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.

See also  How Engineering Leaders Spot Weak Proposals

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.