wait cursor

  • Thread starter Thread starter Dave
  • Start date Start date
D

Dave

I would like to implement the wait cursor when one of my
forms is loading. Is this possible? Is it an API call?

Also, are there any plans in the next version of .NET to
speed up the forms??
 
Dave said:
I would like to implement the wait cursor when one of my
forms is loading. Is this possible? Is it an API call?

Also, are there any plans in the next version of .NET to
speed up the forms??

Cursor.Current = Cursors.Wait;

// do stuff for a while

Cursor.Current = Cursors.Default;

--

..o0O0o.__.o0O0o.__.o0O0o.__.o0O0o.__.o0O0o.__.o0O0o.__.o0O0o.
| Matt Kunze Sometimes there's a point.|
| Build Master Fooly Fool This is not one of those |
| DataSplice Software Developer times. |
=============================================================
 
according to an article I read on opennetcf the way visual studio arranges
the controls in the wrong order
when it comes to tabs and it should load them in top down fashion - not sure
if this helps you

Shaun
 

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