calendar control

yessir

Saved By Grace
Local time
Today, 11:45
Joined
May 29, 2003
Messages
349
I am using calendar control 9.0 with the calendar form to open the calendar and I have but 1 problem with it...

I want it to open to the current date rather than just whatever it feels..

Is there a way to do this?

I am including the form incase someone else wants it and or feels like making the update and posting it back which is easier...

Thanks a lot

~ :confused:
 

Attachments

Not Sure

I'm not sure if this is the way to do it but ...
Have you tried putting something like this on the calendar form.
Code:
Private Sub actlCalendar_Enter()
Me.actlCalendar.Value = Date
End Sub

Steve
 
indesisiv said:
I'm not sure if this is the way to do it but ...

It's the correct method but I'd use the Form_Load event.
 

Users who are viewing this thread

Back
Top Bottom