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