calendar control (1 Viewer)

yessir

Saved By Grace
Local time
Today, 07:00
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

  • Test.zip
    11.2 KB · Views: 116

indesisiv

Access - What's that?
Local time
Today, 11:00
Joined
Jun 13, 2002
Messages
265
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
 

Mile-O

Back once again...
Local time
Today, 11:00
Joined
Dec 10, 2002
Messages
11,316
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

Top Bottom