Print animation in statusbar

Xancholy

Well-known member
Joined
Aug 29, 2006
Messages
143
Programming Experience
Beginner
MS-Word has a little printing animation that runs in the statusStrip when a printout is fired.

How can I replicate that animation in a VB.Net statusStrip?

Thanks for any help.
 

Attachments

  • print_Anim.jpg
    print_Anim.jpg
    10.5 KB · Views: 69
Last edited:
Set an animated Gif image as StatusLabel.Image.
 
All .Net controls will happily animate a .gif without any code if you set it as the image property. For this you'll need a toolstrip status label and set the .gif as the image. Voila!
 
vis781: I tried it now and it throws out exception ("A generic error occurred in GDI+.") when compiling. I used a button with its image property pointing to a small gif file.
 
vis781: Strange mate, but I rebooted my computer and tried it again and Voila! it worked.

But before restart it wasn't working.
 
vis781: Strange mate, but I rebooted my computer and tried it again and Voila! it worked.

But before restart it wasn't working.
It might be that windows updates has applied a patch to your ide or the framework (or both) that needed a windows restart to be fully applied.
 
Back
Top