If I understand you correctly, you should look at the VisibleDate property. If you syn it with the SelectedDate property, the month for the date that has been selected becomes visible.
E.g.
myCalendar.SelectedDate = someDateValue;
myCalendar.VisibleDate = myCalendar.SelectedDate;
HtH,
Imar
|