"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
 
Back
Top