If ShowInTaskbar is true then the form will be displayed in the Windows Taskbar.
[Visual Basic] Public Property ShowInTaskbar As Boolean [C#] public bool ShowInTaskbar {get; set;} [C++] public: __property bool get_ShowInTaskbar(); public: __property void set_ShowInTaskbar(bool); [JScript] public function get ShowInTaskbar() : Boolean; public function set ShowInTaskbar(Boolean);
true to display the form in the Windows Taskbar at run time; otherwise false. The default is true.
If a form is parented within another form, parented form is not displayed in the Windows Taskbar.
You can use this property to prevent windows in your application from being selected by the user via the Windows Taskbar. For example, if you display a Find and Replace tool window in your application, you may want to prevent that window from being selected via the Windows Taskbar since you would need both the application's main window and the Find and Replace tool window displayed in order to process searches appropriately.