Default wait Icon

dashley

Well-known member
Joined
May 27, 2005
Messages
59
Location
Tennessee
Programming Experience
10+
Whenever somthing is loding on the PPC a small spinning color circle (annimated gif?) appears in the center of the screen. For lack of the real name I call it a wait Icon. Does anyone know the name of the item and how to make it pop up while loading somthing


Thansk
 
It is in fact the Wait Icon.... it could also be the Busy Icon..

To get it to show, simply set the MouseIcon property of your form.... don't forget to set it back to Normal when you are done.

-tg
 
TG,


Thanks. I knew that in VB6. I think I make things harder than they are.

VB.NET:
System.Windows.Forms.Cursor.Current = System.Windows.Forms.Cursors.WaitCursor


Thanks Again

Dan
 
Last edited by a moderator:
Back
Top