
Signature
Doug Steele, Microsoft Access MVP
http://I.Am/DougSteele
(no private e-mails, please)
> using ms calendar control in access.
> i want it to do something when i change the date, but there's no onclick
[quoted text clipped - 6 lines]
>
> thanks.
thanks. i downloaded and attempted to use it. WAY to much work, and above my
level of understanding all of what i'm doing. also, if i loose this piece of
paper, i'll never be able to use this calendar in another app.
i like the idea of installing a control and dropping it onto my form.
all i want to do is click on a date and make something happen.
i also looked the the object browser, and it did show a click event. i
typed in a sub for the click event, but nothing happened. this is just all
too confusing.
why isnt there a click event on the microsft-calendar control?? i really
dont get it.
sorry, frustration creeping in.
i also looked into creating my own control, but i apparently need $1000
worth of software and lots of classroom time.
>I never use that control (preferring the one Stephen Lebans has at
>http://www.lebans.com/monthcalendar.htm), but I do know that sometimes the
[quoted text clipped - 14 lines]
>>
>> thanks.
Douglas J. Steele - 06 Mar 2006 22:33 GMT
Believe me, Stephen's calendar is far simpler than a control. Including
controls always significantly complicates the distribution of applications.
It doesn't matter whether or not you understand the modules that you need to
copy into your application: after all, you don't know what code is embedded
in any controls that you use.

Signature
Doug Steele, Microsoft Access MVP
http://I.Am/DougSteele
(no private e-mails, please)
> thanks. i downloaded and attempted to use it. WAY to much work, and above
> my level of understanding all of what i'm doing. also, if i loose this
[quoted text clipped - 30 lines]
>>>
>>> thanks.
HKComputer - 12 Mar 2006 19:14 GMT
If you are talking about the ActiveX calendar control that ships with Access,
it does have a click event. I'm using Access XP and Access 2003 with the
ActiveX Calendar 8.0 control. I use the click event all the time to transfer
the date to the correct text box and then close the calendar.
You must have something wrong in your sub. Try something simple to test it:
Private Sub Calendar0_Click()
MsgBox ("Hi from a calendar.")
End Sub