My code is:
Private Sub Form_Load()
On Error GoTo Err_form_load
DoCmd.Maximize
DoCmd.GoToRecord , , acNewRec
Exit_Form_Load:
Exit Sub
Err_form_load:
DoCmd.GoToRecord , , acLast
Resume Exit_Form_Load
The err_Form_load: is desgined to accept the error and move to the last
record. But, despite that, it still gives me the access message and then
reverts to the first record when I say END. (I don't want the user clicking
debug!)
Access 2003 - recently converted from 97.
Any help would be appreciated.
i'm thinking there was something else preventing your query from being
updateable.
hth
"Bob Waggoner" <BobWa...@discussions.microsoft.com> wrote in message
news:317515DB-4507-42BB...@microsoft.com...