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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top