You could reate a "New Record Button" on the form using this code:
<pre>
Private Sub Command20_Click()
On Error GoTo Err_Command20_Click
DoCmd.GoToRecord , , acNewRec
Exit_Command20_Click:
Exit Sub
Err_Command20_Click:
MsgBox Err.Description
Resume Exit_Command20_Click
End Sub
</pre>
Or you could put this code at the end of the code of the button you already have, to automatically clear the form after adding the record to the database.
This <a href="http://bytes.com/forum/thread660680.html"> site </a> has an interesting discussion dealing with the exact same issue that you have. You might find it helpful.
Good Luck
-Flame
Last Wiki Answer Submitted: September 26, 2008 7:58 pm by Flame14,895 pts.
If you live outside the United States, by submitting your email address you consent to having your personal data transferred to and processed in the United States.