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