I can't seem to find the correct method to enable "Command8"
"TextEndDate" is the field on the form that is pouplated by a calendar.
I'm trying to make the Command8 object only available after the "TextEndDate" is populated.
Thanks
--Dave
"TextEndDate" is the field on the form that is pouplated by a calendar.
I'm trying to make the Command8 object only available after the "TextEndDate" is populated.
Thanks
--Dave
Code:
Private Sub Form_Load()
Forms!frmDateCriteria.Command8.Enabled = False
End Sub
Private Sub TextEndDate_AfterUpdate()
'Enable Command8
Forms!frmDateCriteria.Command8.Enabled = True
End Sub