Click here to Skip to main content
Licence CPOL
First Posted 26 Sep 2008
Views 32,676
Downloads 960
Bookmarked 49 times

Custom Status Animation with VB.NET

By | 7 Oct 2008 | Article
Provide eye-candy to your users with custom animations

Introduction

Remember when something happening in 5 seconds was really quick? Today if something in your application takes more than 5 seconds, your users think the application is locked. Sure I'm exaggerating, but wouldn't it be nice to display something 'eye-catching' while your users are waiting for a long running process to complete? This component uses GDI to draw a series of PNG files onto a form, along with an updatable header and message. Very simple concept, but something that will give your application a professional look. It runs on its own thread and is completely thread-safe, so you can continue with what you are doing while the animation is occurring.

Enjoy!

Using the Code

You can use one of the predefined AnimationData objects, referenced by a corresponding enumeration, or you can create a custom AnimationData object outside of the component and pass it in. I prefer using PNG files for the individual frames (images) of the animation as they support alpha-blending.

CancelClicked Event

When you allow the cancel link to be shown (using the AllowCancel property), you can intercept the cancel and provide a dialog with the CancelClicked event to ask if you really want to cancel the animation. After the user clicks yes, you can do whatever is necessary in the application to stop the process, then set e.Cancel = True in the eventargs. This will be passed back to the component to stop the animation. If you pass back False (e.Cancel = False), then the animation will continue.

AnimationData.FromSingleImage Method

You can create an AnimationData object from a single image that includes all of the frames of the animation. To do this, add the image to your project and call the AnimationData.FromSingleImage method. Tell the method how many frames the animation contains and it will split the single image up into the individual frames and populate the images list. Specifying a transparency color will make that color transparent in the image.  When the method returns, set the AnimationData properties appropriately for your needs and call the Show method.

History

  • 26th September, 2008: Initial post
  • 29th September, 2008: Added CancelClicked event description
  • 3rd October, 2008: Updated code to fix fast Cancel
  • 7th October, 2008: Added AnimationData.FromSingleImage method description

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

Greg Osborne

Web Developer
American Equity Insurance
United States United States

Member

Visual Basic Developer since version 1.0
Java web developer
Currently developing in vb and c#

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
QuestionWhy the form? PinmemberElfman_NE10:21 22 Apr '10  
GeneralMessage to user comes up behind animation Pinmemberyet another programmer4:55 23 Sep '09  
GeneralHelp Pinmemberfuxiurong_200122:44 20 Oct '08  
AnswerRe: Help PinmemberGreg Osborne2:42 21 Oct '08  
GeneralCancel not working PinmemberPSU Steve4:53 3 Oct '08  
AnswerRe: Cancel not working PinmemberGreg Osborne5:21 3 Oct '08  
GeneralRe: Cancel not working PinmemberPSU Steve6:31 3 Oct '08  
AnswerRe: Cancel not working PinmemberGreg Osborne6:51 3 Oct '08  
GeneralRe: Cancel not working PinmemberPSU Steve7:00 3 Oct '08  
QuestionMyClass. versus Me. PinmemberRVW7:06 29 Sep '08  
AnswerRe: MyClass. versus Me. PinmemberGreg Osborne7:25 29 Sep '08  
GeneralRe: MyClass. versus Me. PinmemberGreg Osborne7:32 29 Sep '08  
GeneralRe: MyClass. versus Me. PinmemberRVW7:38 29 Sep '08  
QuestionAny C# Code ? PinmemberPankajkumar Nikam5:07 29 Sep '08  
AnswerRe: Any C# Code ? PinmemberGreg Osborne5:41 29 Sep '08  
GeneralRe: Any C# Code ? PinmemberPankajkumar Nikam6:15 29 Sep '08  
GeneralWell Done Greg PinmemberDumpsterJuice2:30 29 Sep '08  
GeneralVery Nice Pinmembersam.hill17:27 26 Sep '08  

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web04 | 2.5.120517.1 | Last Updated 7 Oct 2008
Article Copyright 2008 by Greg Osborne
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid