K
Kelly
I feel like an iddiot...but Im pretty good with Access. I want my form to
open to a blank form, but still allow me to view other records. Ive searched
all the questions and have tried all recommendations below. But nothing is
working. I still get my first record instead of a blank form. There is a
sub form as part of the form, does that have anything to do with it? This is
crazy!
Private Sub Form_Load()
DoCmd.GoToRecord , , acNewRecord
End Sub
DoCmd.OpenForm "YourForm"
DoCmd.GoToRecord , , acNewRec
Private Sub Form_Load()
DoCmd.GoToRecord , , acNewRec
End Sub
Private Sub Form_Load()
If Not Me.NewRecord Then RunCommand acCmdRecordsGotoNew
End Sub
Private Sub Form_Load()
If Not Me.NewRecord Then
RunCommand acCmdRecordsGoToNew
End If
End Sub
open to a blank form, but still allow me to view other records. Ive searched
all the questions and have tried all recommendations below. But nothing is
working. I still get my first record instead of a blank form. There is a
sub form as part of the form, does that have anything to do with it? This is
crazy!
Private Sub Form_Load()
DoCmd.GoToRecord , , acNewRecord
End Sub
DoCmd.OpenForm "YourForm"
DoCmd.GoToRecord , , acNewRec
Private Sub Form_Load()
DoCmd.GoToRecord , , acNewRec
End Sub
Private Sub Form_Load()
If Not Me.NewRecord Then RunCommand acCmdRecordsGotoNew
End Sub
Private Sub Form_Load()
If Not Me.NewRecord Then
RunCommand acCmdRecordsGoToNew
End If
End Sub