[RESOLVED] timer on winform
Hi,
In my windows form project, every time there is a call to a long running method, I show a small form which has a label control that says, please wait and then after the long running call I hide that form . i.e.
ShowForm();
LongRunningMethod();
HideForm();
Question:
How can I make the label control to blink every second while the showForm is being shown?
Thanks
Re: [RESOLVED] timer on winform
Also, if you're gonna use my BlinkLabel or even a marquee progress bar as jmc suggested, make sure that your long running method doesnt lock up the UI. Use timers or a different thread or even DoEvents so that the control, which ever one you're gonna use can redraw themselves.
Re: [RESOLVED] timer on winform