Clearing Form

  • Thread starter Thread starter Guest
  • Start date Start date
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.
 
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
 
Back
Top