Calendar Control Problem

  • Thread starter Thread starter magmike
  • Start date Start date
M

magmike

I have a calendar object (MSCAL.Calendar.7) on a form whose control source
is CBDate. This form is only for adding records, so the form opens with a
blank uncreated record. The calendar by default, shows February of 2003
(when I created the form). So therefore, the user has to navigate the
calendar to pick the date they desire (always a future date that is far away
from the default showing date). Is there a way to have the calendar's
default view be today, or at least this month, without having to update it
every month manually?

Thanks!

Mike
(otherwise known as "punk")
 
In hte forms on-load event..simly set the date to today...

me.mycal.value = date
 
Back
Top