Adding a single row to a table

M

Michael

I'd value some advice on simply adding a row to a table.

I want to have a popup form to enter a single new row of data into a table.

It seemed that a good way might be to have standard continuous form bound to
the table and display only the NewRecord row.

Is this the best way to do it? If so, how can I suppress the display of the
existing rows in a continuous form?

Help would be appreciated.

Michael.
 
D

Douglas J. Steele

Set the form's DataEntry property to True. The Data Entry property doesn't
determine whether records can be added; it only determines whether existing
records are displayed.
 
Top