Using wait cursor

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

Guest

Dear All,
How could i declare and use the wait cursor of the device, while i am
performing a method which takes some times to be done?

Thanks
Regards
Tamer Hesham
 
hi...

It's actually one of the easiest things to do...

just do this:

Cursor.Current = Cursors.Default ' turn on the Wait cursor...

and after the process is done:

Cursor.Current = Cursors.WaitCursor ' turn it off...

and thats all...
 

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