Monthview showing today's date
The following code works,
But how can I set it so that "NOW" does not display a datetime. I want the date in a format like "YYYY/MM/DD".
I tried the "Dateformat property" of the Monthview control but notta.
I am getting ready to try trimming the time of the end manually, but I'm certain there is an easier way.
Re: Monthview showing today's date
try...
VB Code:
Monthview1.Value = Format(Now, "yyyy/mm/dd")
Re: Monthview showing today's date
Thanks :blush:
...and I call myself a VB Programmer.
Ikes... :rolleyes:
Re: Monthview showing today's date
I am suprised that the Monthview didn't do the conversion itself. It must know the format of what is coming in (the Now function) - and the format of what it needs.
Another hole to be plugged.
:thumb: