I want a specific date to be selected on my calendar. MSDN advises to use the property SelectedDate (http://msdn.microsoft.com/en-us/libr...sd(VS.71).aspx) but that isnt recognized in my C# app!

Code:
myCalendar.SelectedDate = employee.BirthDate;
Instead I used this:

Code:
myCalendar.TodayDate = employee.BirthDate;
The problem with this is that it states that TODAYS date is the employees birth date. I however want it to state that the selected day is the employees birth date without the words "today: " infront of it. Is this possible? I tried using the method setDate but I am not too sure how it works...