here it is... |
| santhosh kapa replied to Arun Kumar at 12-May-08 02:59 |
This can be done using Control.Cursor property
You need to assign Waitcursor to this when you want to show the wait cursor..ie, Cursor.WaitCursor
and once done you can switch back to normal, ie Cursor.Default
Check this for more information
http://www.csharp-examples.net/hourglass-wait-cursor/
http://www.codeproject.com/KB/cpp/WaitCursor.aspx |
|