How can I make calendar open with today's date in form

Windsurfer

New member
Local time
Today, 05:20
Joined
Mar 3, 2001
Messages
7
Can someone please help me, I have a calendat on sa form and need it to open on today's date when form opens.
Thanks for your help,
Emilio
 
Go to the properies of the form. Look for (click on) the On Open event. click on the elipses (...) to the right of that line. Select Code Builder:

Private Sub Form_Load()

Me.BegCal.Value = date()

End Sub
 
Thank you pdx_man, it works great!

Emilio
 

Users who are viewing this thread

Back
Top Bottom