J
JohnE
I have a text box that is shows a date. I would like to
have the date flash off and on if it is equal to or less
then today's date. I have the following code but it is
not working right.
Private Sub FollowUpDate_Change()
If Me.txtFollowUpDate.Value <= Date Then
Me.txtFollowUpDate.Visible = Not
Me.FollowUpDate.Visible
Else
Me.txtFollowUpDate.Visible = True
End If
End Sub
I someone can see what the error is, please let me know. I
tried to pattern it after the one for a label flashing
that I have.
Thanks in advance for any assistance.
*** John
have the date flash off and on if it is equal to or less
then today's date. I have the following code but it is
not working right.
Private Sub FollowUpDate_Change()
If Me.txtFollowUpDate.Value <= Date Then
Me.txtFollowUpDate.Visible = Not
Me.FollowUpDate.Visible
Else
Me.txtFollowUpDate.Visible = True
End If
End Sub
I someone can see what the error is, please let me know. I
tried to pattern it after the one for a label flashing
that I have.
Thanks in advance for any assistance.
*** John