ShowInTaskBar Property (AForm)

Returns whether a Form object appears in the Windows taskbar.

Syntax

 [ 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.

Where

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.

Comments

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.

Example

The following statement retrieves whether the AForm will appear in the taskbar:

bfrm1ShowInTaskBar = frm1.ShowInTaskBar

Applies to

AForm

See Also

BorderStyle