Hi there,
I have a form where I want to add new row using button and done want a default new record,
I have changed "Allow Additions" to No for the forms properties
and have added following code for the button
AllowAdditions = True
DoCmd.GoToRecor d , , acNewRec
Now when I click on the button and type something in newly added record (though button) it automatically creates a blank record which I dont want
I want user can only add a new record on click of a button
Any thoughts
Thanks
I have a form where I want to add new row using button and done want a default new record,
I have changed "Allow Additions" to No for the forms properties
and have added following code for the button
AllowAdditions = True
DoCmd.GoToRecor d , , acNewRec
Now when I click on the button and type something in newly added record (though button) it automatically creates a blank record which I dont want
I want user can only add a new record on click of a button
Any thoughts
Thanks
Comment