Eliminate "New Record" on Subform

M

Mary

I have a subform that displays records based on a combo box selection. It's
working fine, but displays a new record that autofills with the field
selected in the combo box. Can this be eliminated so it just displays the
records that match without the new record row. Thanks, Mary.
 
A

Allen Browne

Open the subform in design view, and set its AllowAdditions property to No.
 
S

Sandra Daigle

Just set the AllowAdditions property of the subform's underlying form to
False. Then if you need to add new records, create a command button that
sets the property back to True.
 
Top