How can I call the ColorWheel cursor while loading my application ?

  • Thread starter Thread starter A_PK
  • Start date Start date
A

A_PK

How can I call the ColorWheel out while my application is loading or
process something that take some time ? I want to appear a color wheel.
 
Assuming you are using VB.NET then simply:-

Cursor.Current = Cursors.WaitCursor

'do something

Cursor.Current = Cursors.None

Peter
 

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