i am able to grey out(disable) a command button when textbox1 is empty. but how can i enable the command button once a user enters info in textbox1? this is the code i use:
Private Sub Form_Current()
If IsNull(Me.Text25) Then
Command27.Enabled = False
Else
Command27.Enabled = True
End If
Me.Refresh
End Sub
what else do i need to add? thanks!!
Private Sub Form_Current()
If IsNull(Me.Text25) Then
Command27.Enabled = False
Else
Command27.Enabled = True
End If
Me.Refresh
End Sub
what else do i need to add? thanks!!