I display a calendar in my windows form with a particular date highlighted on it:

Code:
calBirthDate.SetDate(lTrainee.BirthDate);
The user then has the possibility to manually change this highlighted date. On saving I want this newly highlighted date to be saved. How do you set the date for setDate()? I tried the following but it didnt work:

Code:
lTrainee.BirthDate = (DateTime)calBirthDate.SetDate.Value;