Clearing Form

G

Guest

Just Created A Form. When I open The Form The Previous Information is on the
form. How do I make It So when I open The form it is blank and ready for the
next data to be input? Thank You In Advance.
 
A

Allen Browne

Set the form's Data Entry property to Yes.
The form will then open without its previous records, ready to enter new
ones.

If you want to old records loaded anyway, you could use the form's Load
event procedure to move to the new record:
Private Sub Form_Load()
If Not Me.NewRecord Then
RunCommand acCmdRecordsGotoNew
End If
End Sub
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top