i have a combo box named "type" which is disable when the form is first loaded.
when i click a button "new", "type" should become enabled.
therefore, i built an On Click event on the "new" button which is like the following-->
Private Sub hardnew_Click()
Me.AllowAdditions = True
DoCmd.GoToRecord , , acNewRec
Me![type].Enabled = False
End Sub
can the above coding work?