Control Mouse Cursor

  • Thread starter Thread starter Wayne Wengert
  • Start date Start date
W

Wayne Wengert

In VB.NET is there a way to set the mouse cursor to the Wait cursor that
will stay in effect across several forms? For example, I want to set the
cursor to the WaitCursor in formA just before it calls formB and FormB may,
in turn, call another form. I want the WaitCursor until control is returned
to formA where I reset it to Default. (I believe that in VB6 there was the
notion of a screen cursor - that is what I want)

TIA

Wayne
 
Thanks for the response Ken but that only seems to change the cursor while
in the original form?

Wayne
 
Hello Wayne,
Thanks for the response Ken but that only seems
to change the cursor while in the original form?

Try:

Cursor.Current = Cursors.WaitCursor

Hope this helps,
Len
 

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

Similar Threads


Back
Top