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
If RenewalDate.Value < Date Then
OLEUnboundRenDte.Visible = False
ElseIf RenewalDate.Value >= Date Then
OLEUnboundRenDte.Visible...