I'm sure you mean explicit (clear), not illicit (illegal)
The type of functionality you're looking for wasn't added to Access until access 2007 (Your listed version is 2000). The calendar controls prior to 2007 were clunky to say the least and not always intuitive:
Let's say you have a form with a field named
fldDate
You have an activex control on that form for the calendar control named CalendarControl
you'd have to have this:
Code:
Private Sub CalendarControl_Click()
flddate = CalendarControl
End Sub
so even though when you look at the events available for the calendar control the ON CLICK event isn't there it's still programmable as though it were.