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;
}
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top