G
Gee...
I have a simple code to insert a date in a 324,000 record table.
Private Sub ID_GotFocus()
Date = "07/04/2008"
If Model <> "" Then
DoCmd.GoToRecord , , acNext
End If
End Sub
For some reason, it zips through a bunch of records, inserting the date,
then says "Run-time error '2105': You can't go to the specified record".
I click End, then go on and it works for a while, zipping through records,
inserting the date, then stops again and gives me that same error.
Anyone have any idea how I can make this work better?
Thanks in advance for any help.
Gee.
Private Sub ID_GotFocus()
Date = "07/04/2008"
If Model <> "" Then
DoCmd.GoToRecord , , acNext
End If
End Sub
For some reason, it zips through a bunch of records, inserting the date,
then says "Run-time error '2105': You can't go to the specified record".
I click End, then go on and it works for a while, zipping through records,
inserting the date, then stops again and gives me that same error.
Anyone have any idea how I can make this work better?
Thanks in advance for any help.
Gee.