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.
 

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