Turn Cursor into an Hourglass when waiting

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

Guest

I'm creating an application in C# with webservices and some of the pages have
a substantial amount of lag time.

I'd like to know if there is any way to have the cursor turn into an
hourglass while waiting? Any help is appreciated!
 
PK9 said:
I'm creating an application in C# with webservices and some of the pages
have
a substantial amount of lag time.

I'd like to know if there is any way to have the cursor turn into an
hourglass while waiting? Any help is appreciated!

ThisForm.Cursor = Cursors.WaitCursor.

Tom P.

Try looking up cursor in the help.
 
This won't work. I am not creating a Windows Form applicaiton. I am
creating a Web Application (using C#). Is there any way to do this in a web
application?
 
Back
Top