T
Tom
When I click on my command button, this is
the code that is run.
Private Sub Command85_Click()
DoCmd.GoToRecord , , acNewRec
Me.RunNumber = Nz(DMax("[RunNumber]", "ABLE_Table1", "[RunDate]=Date()"), 0)
+ 1
Me.Dirty = False
End Sub
After I click, the next record comes up ready for input, however,
the command button is still highlighted.
I need it to tab stop on the first control of that next record
Tom
the code that is run.
Private Sub Command85_Click()
DoCmd.GoToRecord , , acNewRec
Me.RunNumber = Nz(DMax("[RunNumber]", "ABLE_Table1", "[RunDate]=Date()"), 0)
+ 1
Me.Dirty = False
End Sub
After I click, the next record comes up ready for input, however,
the command button is still highlighted.
I need it to tab stop on the first control of that next record
Tom