Hello all,
I have an unbound form that I use for processing loan payments. I have an unbound "datepaid" field, formatted as Short Date. I have a button to process the various types of payments (full, short, etc) and...
In debug mode, no matter what I do, (on hover) the datepaid shows 12:00:00 AM, on debug.print its 12/30/1899. I've used the calendar control, NOT used the calendar control, etc. Obviously, my if statement does not process.Code:If vamountpaid > 0 And Format (datepaid, "short date") <= DueDate And amountpaid > 0 And PaidDate <> Null Then
What is going on here? TIA!!