Busy icon/cursor

  • Thread starter Thread starter Sinex
  • Start date Start date
S

Sinex

Hi,
How do I display the busy icon/cursor while my app is doing a long task
in the background?

Sinex
 
Cursor.Current = Cursors.WaitCursor;
try
{
....
}
finally
{
Cursor.Current = Cursors.Default;
}
 
Back
Top