Record display

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
 
W

Wayne Morgan

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
 
Top