"Spinning" Cursor

  • Thread starter Thread starter Thomas Mone
  • Start date Start date
T

Thomas Mone

I have one CF C# program that performs a lengthy calculation. How can I
display a busy or in progress indicator so that the user knows the program
is working?

Thanks.
 
Cursor.Current = Cursors.WaitCursor

then to remove:-

Cursor.Current = Cursors.Default


Peter
 

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