Help! Form properties

  • Thread starter Thread starter Chris
  • Start date Start date
C

Chris

I display some data in a form in "Continuous forms" view, and I seted in the
form properties NO for "Allow aditions" and for "Data entry", but it still
appears in the form the line for New record (*).
How can I get rid of it ?
 
The AllowAdditions property set to No should stop the New Record row from
appearing.

Is this form being opened from a command button? If so, try:
DOCmd.OpenForm "MyForm", DataMode:=acFormReadOnly
 
Back
Top