Eliminate "New Record" on Subform

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

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.
 
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.
 
Back
Top