devxlogo

Animated form icons

Animated form icons

You can add a professional touch to your apps by showing an animated icon when the main form is minimized. To achieve this effect, prepare an array of Image controls, each one containing the icons that make up the animation, then add a Timer control, with the Enabled property set to True and the Interval property set to 250 (or any other value suited to the particular animation effected). Then add the following code:

Sub Timer1_Timer()    Const NUM_ICONS = 4    Static iconIndex As Integer    If Form1.WindowState = vbMinimized Then        Form1.Icon = Image1(iconIndex).Picture        iconIndex = (iconIndex + 1) Mod NUM_ICONS    End IfEnd Sub

It is important that all the images loaded into Image controls are ICO images; if you try to assign a standard BMP file to the Icon property a runtime error occurs.

devxblackblue

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.

About Our Journalist