clickable calendar to prefill date field?

viveleroi

Registered User.
Local time
Today, 13:09
Joined
Sep 6, 2004
Messages
20
How can I get a calendar or pop-up calendar to allow a user to click a date, and then that date would prefill a date field?
 
Using the Access Calendar.....
 

Attachments

With the ms calendar control this is possible.

For example, in the calendar click event you can define the control value:

Sub calendar_Click()
TextBoxDate1 = calendar.Value
End Sub

[]s
 

Users who are viewing this thread

Back
Top Bottom