Returns whether a Form object appears in the Windows taskbar.
[ bShowInTaskBar = ] Object.ShowInTaskBar
The ShowInTaskBar property syntax has the following parts:
Name |
Type |
Description |
Object |
AForm |
AForm object |
bShowInTaskBar |
Bool |
A boolean expression that specifies whether a Form object appears in the Windows taskbar. |
bShowInTaskBar can be one of the following:
Value |
Description |
True * |
The Form object appears in the taskbar. |
False |
The Form object does not appear in the taskbar. |
Use the ShowInTaskbar property to keep dialog boxes in the application from appearing in the taskbar.
The default value for the ShowInTaskbar property assumes the default setting for the BorderStyle property of the Form object (Sizable). Changing the BorderStyle property may change the setting of the ShowInTaskbar property.
The property is read only at run time.
The following statement retrieves whether the AForm will appear in the taskbar:
bfrm1ShowInTaskBar = frm1.ShowInTaskBar