Hiding the system busy icon

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

Guest

Hi
This might be a stupid question but is there a way to hide the system busy
icon I get when my C# application i loaded?

I have a splash screen I display on start up, which i use to convey the
status of the application as it loads up, but I have this annoying little
'busy icon' taking up real estate in the center of the screen.

thanks in advance
Guus Davidson
 
Hi Guus,

You can use System.Windows.Forms.Cursor. Here's an example of how to
use it:

// Set to busy
Cursor.Current = Cursors.WaitCursor;

// Do your stuff.....

// Set back to normal
Cursor.Current = Cursors.Default


Regards,
Christian Resma Helle
http://christian-helle.blogspot.com
 

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