Checking date against a text box

oMADMANo

Registered User.
Local time
Today, 05:55
Joined
Jan 19, 2012
Messages
11
okay I have a text box set up and formatted for date called RenewalDate and I would like it to show up a reminder if this is current date or more.
I have tried this
Code:
If RenewalDate.Value < Date Then
OLEUnboundRenDte.Visible = False

ElseIf RenewalDate.Value >= Date Then
OLEUnboundRenDte.Visible = True

End If

Any help appreciated
Thanks.
 

Users who are viewing this thread

Back
Top Bottom