Default Property

Applies To

ActiveX control, Command Button control.

Description

You can use the Default property to specify whether a command button is the default button on a form.

Setting

The Default property uses the following settings.

Setting

Description

Visual Basic

Yes

The command button is the default button.

True (–1)

No

(Default) The command button isn't the default button.

False (0)


You can set this property by using the command button's property sheet, a macro, or Visual Basic.

Remarks

When the command button's Default property setting is Yes and the Form window is active, the user can choose the command button by pressing ENTER (if no other command button has the focus) as well as by clicking the command button.

Only one command button on a form can be the default button. When the Default property is set to Yes for one command button, it is automatically set to No for all other command buttons on the form.

Tip For a form that supports irreversible operations, such as deletions, it's a good idea to make the Cancel button the default command button. To do this, set both the Default property and the Cancel property to Yes.

See Also

Cancel property, Click event.