wait cursor in compact framework and pocket pc

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

is there any way to display the wait cursor (tha animated one) that the
pocket pc displays in the center of the screen when it is busy with a job
from our application in .NET compact framework?
 
Dimitris said:
is there any way to display the wait cursor (tha animated one) that the
pocket pc displays in the center of the screen when it is busy with a job
from our application in .NET compact framework?

vb.net:
Cursor.Current = Cursors.WaitCursor

hi
Stefano
 
Be sure to set cursor back to the default one before your percedure ends.
Specially in the cases where exceptions are encountered. A try-catch-finally
is very useful here, place the code to turn on the WaitCursor in the try
block and make sure to set it to the default cursor in the finally block.
 
Back
Top