save button

  • Thread starter Thread starter tracktraining
  • Start date Start date
T

tracktraining

Hi All,

I would like to have the SAVE button enable when the user enters data in the
newrecord line (*line). I don't know where to add the event procedure. I
think the code should be as follows:

If Not IsNull(Me.NewRecord) Then
Me.btnsave.Enabled = True
End If

thanks for helping.

currently i have it under the current form event procedure.
 
Hi All,

I would like to have the SAVE button enable when the user enters data in the
newrecord line (*line). I don't know where to add the event procedure.

The Form's BeforeInsert event.
 
Back
Top