C chriss_ko Registered User. Local time Today, 14:24 Joined Mar 26, 2013 Messages 28 Apr 22, 2013 #1 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..
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..
C Catalina Registered User. Local time Today, 14:24 Joined Feb 9, 2005 Messages 471 Apr 22, 2013 #2 In the properties of the form, on the Data Tab set Data entry to Yes. Catalina
missinglinq AWF VIP Local time Today, 17:24 Joined Jun 20, 2003 Messages 6,420 Apr 22, 2013 #3 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)>
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)>