Record display

  • Thread starter Thread starter Dazza
  • Start date Start date
D

Dazza

Hi,

What property(ies) do I need to change on a form so that a
blank record (that can be used for inputting new data) is
displayed rather than the first record?

Cheers,
D
 
If you want to have only new records and those records that have been
entered during the current session to show, set the form's Data Entry
property to Yes. If you want all records to show as they normally would but
just have the form open to the new record, then in the form's Load event try

DoCmd.GoToRecord , , acNewRec
 
Back
Top