Re: Date: Can you have one that is just mm/dd or mm/yyyy etc?



Unfortunately, yes, I do. At some point the stored date will be
embedded in SQL and, if it is mm/yyyy format the SQL will be "LIKE
%theMm/yyyyDate%", and if it is mm/dd/yyyy format the SQL will be
"=theMm/dd/yyyyDate". I will need to evaluate the stored "Date" to
determine if a day exists in it, and build the SQL accordingly. Storing
the Date as a String would of course be the way to handle this, except
that the Date Object is already previously used in this application I
am patching. I don't wanna rewrite the whole thing...

.