I have frm_Parts with a button on it that launches frm_Bevel. frm_Bevel is the form I want to hide the New Record row, and it is a multiple items form that has a tabular layout.
So the OnCurrent for frm_Bevel info has the following code:
Me.AllowAdditions = False
I also have an AddButton where the OnClick:
Me.AllowAdditions = True
DoCmd.GoToRecord , , acNewRec
The new record is hidden when the form loads, but when I hit the Add New button, nothing happens. The add button was working fine before I tried to hide the New Record. Any ideas?
So the OnCurrent for frm_Bevel info has the following code:
Me.AllowAdditions = False
I also have an AddButton where the OnClick:
Me.AllowAdditions = True
DoCmd.GoToRecord , , acNewRec
The new record is hidden when the form loads, but when I hit the Add New button, nothing happens. The add button was working fine before I tried to hide the New Record. Any ideas?