Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Not show first record when form is opened

Status
Not open for further replies.

mutiger83

IS-IT--Management
Apr 18, 2005
29
US
Is there anyway to not have the first record automatically displayed when an MS Access form is opened? I would like the user to be able to move between records on the table, but would like it if it was just blank when the form was opened, instead of the first record.

Thanks!
 
I'll assume that the table has a primary key. Create a new record by typing a 0 in the primary key field and leave all the other fields blank. When you open the form, it'll start on this record.
Strange request.
 
Hi,

In your forms "On Open" event you can have...

DoCmd.GoToRecord , , acNewRec

This will take you to a new record.

Peter.


Remember- It's nice to be important,
but it's important to be nice :)
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top