displayed record in a form

  • Thread starter spcscooter via AccessMonster.com
  • Start date
S

spcscooter via AccessMonster.com

How do I open a form and have the record being displayed show up empty. I
don't want people to be able to navigate through this form so I will turning
off the navigation pane. So basically it looks like this

RMA Number (Text) ____I want this to be empty when opened____
Add Record Button

I no this may be a dumb question but my brain is in overtime right now.

Thanks to all
 
L

Linq Adams via AccessMonster.com

If you only want to be able to add new records, but do not wish to view
existing records, for your form set DataEntry Property to Yes.

If you want to be able to view existing records, but go automatically to a
new, blank record when your form first opens, use this code in your form's
code module:

Private Sub Form_Load()
DoCmd.GoToRecord , , acNewRec
End Sub
 

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

Top