Use the DateChanged to notify your application when the
browsed date was changed. Use the SelectionChanged
event to notify your application when the selection was changed. The
DateChanged event is fired if the Date
property is changed.
The following sample displays the browsed date:
Private Sub Calendar1_DateChanged()
Debug.Print FormatDateTime(Calendar1.Date)
End Sub