calendar in access 2010

shutzy

Registered User.
Local time
Today, 17:18
Joined
Sep 14, 2011
Messages
775
i am looking for a way to show the calendar on a form. the calendar i mean is then one when you want to input a date into a box. you have the little calendar icon to the right of the box and by clicking it it opens up a proper calendar. is there a way of skipping the clicking part and just have the proper calendar showing.

thanks
 
i am looking for a way to show the calendar on a form. the calendar i mean is then one when you want to input a date into a box. you have the little calendar icon to the right of the box and by clicking it it opens up a proper calendar. is there a way of skipping the clicking part and just have the proper calendar showing.

thanks


Try ActiveX Controls Calendar Control 12.0 (or whatever the Access 2010 equivalent is).
 
many months since i started this thread. i have actually found what i was looking for.

its a microsoft release for calendar control.

i have added the form in the attachment.

also in the date field/txt box you wish to use this facility you need to put in your main form (calendar as subform)

Private Sub Form_Load()
Set calendarForm = Me.frmCalendar.Form
End Sub

and

Private Sub calendarForm_DateChanged(newDate As Date)
txtApptmntDate = newDate
End Sub

hope this helps
 

Attachments

Users who are viewing this thread

Back
Top Bottom