Form to enter new record.

chriss_ko

Registered User.
Local time
Today, 14:24
Joined
Mar 26, 2013
Messages
28
I have a form that i use to enter record to a table but the problem is i want when you first open the form to display area to enter new record without you clicking the button to add new record.

help plzz..
 
In the properties of the form, on the Data Tab set Data entry to Yes.

Catalina
 
As I said, elsewhere, to have the Form open on a New Record and be able to view Existing Records, leave Data Entry = No and use this code:
Code:
Private Sub Form_Load()
  DoCmd.GoToRecord , , acNewRec
 End Sub
Just depends on your exact needs.

Linq ;0)>
 

Users who are viewing this thread

Back
Top Bottom