32.15 How can I prevent a form from being shown in the taskbar?


You need to set the form's ShowInTaskbar property to False to prevent it from being displayed in the Windows taskbar.

[C#]
     this.ShowInTaskbar = false;

[VB.NET]
     Me.ShowInTaskbar = False



© 2001-2010 Copyright Syncfusion Inc. All rights reserved.  |  Privacy Policy  |  Contact  |  Sitemap