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
 
Back
Top