I had posted this issue earlier and thought I had it solved but it has not been working as well as I thought It was. This is the code for a button on a form. When the user presses this button it is suppose to append or add information into a table:
Private Sub Add_Click()
On Error GoTo Err_Add_Click
DoCmd.GoToRecord , , acNewRec
Exit_Add_Click:
Exit Sub
Err_Add_Click:
MsgBox Err.Description
Resume Exit_Add_Click
End Sub
It is not working that way. It seems to be replacing a row of records that are already in the table it is not appending to the table. I would appreciate your input. Maybe I am leaving out something I should'nt be. Thanks
Regards
Private Sub Add_Click()
On Error GoTo Err_Add_Click
DoCmd.GoToRecord , , acNewRec
Exit_Add_Click:
Exit Sub
Err_Add_Click:
MsgBox Err.Description
Resume Exit_Add_Click
End Sub
It is not working that way. It seems to be replacing a row of records that are already in the table it is not appending to the table. I would appreciate your input. Maybe I am leaving out something I should'nt be. Thanks
Regards