Starting with new record

  • Thread starter Thread starter rblivewire
  • Start date Start date
R

rblivewire

Is there any way that when a user opens a form, it starts at a new
record for them to input data right away without going through the
other records? Done in VB or any other way?
 
Set the form's Data Entry property to Yes. The old records are not loaded,
so you are at the new record.

If you want to load the old records as well, but go to the new record, add
this to the form's Load event procedure:
If Not Me.NewRecord Then
RunCommand acCmdRecordsGotoNew
End If
 

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