Hi to all
I want to make a some button disable on openform event and when during the entry process a user enter a date in date field after checking with the current date(less tahn current date) the disabled button suould be enabled.
Any suggestion.
I am trying onchage event:
Private Sub Form_Open(Cancel As Integer)
cmddone.Enabled = False
End Sub
Private Sub RMAReceive_Change()
If Len(RMAReceive) = 10 Then
cmddone.Enabled = True
End If
End Sub
rma receive is date type text box.
I want to make a some button disable on openform event and when during the entry process a user enter a date in date field after checking with the current date(less tahn current date) the disabled button suould be enabled.
Any suggestion.
I am trying onchage event:
Private Sub Form_Open(Cancel As Integer)
cmddone.Enabled = False
End Sub
Private Sub RMAReceive_Change()
If Len(RMAReceive) = 10 Then
cmddone.Enabled = True
End If
End Sub
rma receive is date type text box.