how to load a blank record?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hello,

Background,
I have created a small D/Base. Within the dbase, I have created a form with
text box.
The idea for the text box is for users to add a description of some sort,
then click on a ADD Button & new record is created.

Problem,
i would like to open up the dbase & go to a blank record rather go to the
first record.

Example,
I have 25 records in the dbase, when I open it I ought to go to record 26
which is a new blank record. Instead the dbase opens up in record number 1.

Any idea on how I can resolve this?

Thank you,

Mo
 
Create an event procedure in the On Open property of the form and put the
following code
DoCmd.GotoRecord , , acNewRec
 
Back
Top