Use the SelectionChanged event to notify your application when the user selects a different date. Use the SelDate property to retrieve or assign the selected date. The Date property indicates the date currently displayed in the control's drop-down calendar. Use the MaskOnEmpty property to define the caption shown in the control's label when the SelDate property is empty.
The following sample prints the
selected date:
Private Sub CalendarCombo1_SelectionChanged()
Debug.Print FormatDateTime(CalendarCombo1.SelDate())
End Sub