cardgunner
Registered User.
- Local time
- Today, 00:12
- Joined
- Aug 8, 2005
- Messages
- 210
I just upgraded to Access 2007. When in 2003 I would open a form and it would go the a new record but the form was not filtered. Now when I open the form it filters it.
my Open event procedure is
Private Sub Form_Open(Cancel As Integer)
Dim stDocName As String
Dim stLinkCriteria As String
stDocName = "frm_call_log_table"
DoCmd.OpenForm stDocName, acFormDS, , stLinkCriteria
DoCmd.GoToRecord , , acNewRec
End Sub
What do I need to do so when the form opens it goes to the new record but does not filter it?
my Open event procedure is
Private Sub Form_Open(Cancel As Integer)
Dim stDocName As String
Dim stLinkCriteria As String
stDocName = "frm_call_log_table"
DoCmd.OpenForm stDocName, acFormDS, , stLinkCriteria
DoCmd.GoToRecord , , acNewRec
End Sub
What do I need to do so when the form opens it goes to the new record but does not filter it?