getting a aalendar to control date record

  • Thread starter Thread starter glen
  • Start date Start date
G

glen

Access 2003.

I want to be able to use a calendar to select a date record. I have a field
on the form called "adate" that I would like the calendar to control. When I
select a date on the calendar I want the "adate" to change to the selected
date.
 
Use the AfterUpdate event of the calender to set the vaule of your [adate]

Private Sub CalendarName_Updated(Code As Integer)
Me.adate = Me.CalendarName
End Sub
 
Back
Top