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