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