A
Adam Olson
When clicking on a link in an access form one of my users is getting an
error: You can't go to the specified record. He has full windows security
permissions to the file and has full access security to the Workgroup file.
T his is the code for the button:
Private Sub AddCourse_Click()
On Error GoTo Err_AddCourse_Click
DoCmd.GoToRecord , , acNewRec
Exit_AddCourse_Click:
Exit Sub
Err_AddCourse_Click:
MsgBox Err.Description
Resume Exit_AddCourse_Click
End Sub
when i open up this database it works fine. i did not create this database.
error: You can't go to the specified record. He has full windows security
permissions to the file and has full access security to the Workgroup file.
T his is the code for the button:
Private Sub AddCourse_Click()
On Error GoTo Err_AddCourse_Click
DoCmd.GoToRecord , , acNewRec
Exit_AddCourse_Click:
Exit Sub
Err_AddCourse_Click:
MsgBox Err.Description
Resume Exit_AddCourse_Click
End Sub
when i open up this database it works fine. i did not create this database.