Current Date for Calendar Control

  • Thread starter Thread starter Lynn
  • Start date Start date
L

Lynn

I have inserted a Calendar Control 11.0 onto my Access 2003 form & would like
to set its default date value to the current date. The Value property of the
calendar, however, does not seem to accept a formula. Is there any way I can
achieve this?
 
Lynn said:
I have inserted a Calendar Control 11.0 onto my Access 2003 form & would
like
to set its default date value to the current date. The Value property of
the
calendar, however, does not seem to accept a formula. Is there any way I
can
achieve this?

In your forms on-load event go:


me.NameOfCalContorl.Value = date
 
Back
Top