I am using the Calendar Control, and would like to change the colors of the highlighting that is used for selection of a range.
temp = DateTime.Parse("11/15/2005");
monthCalendar1.SelectionStart = temp;
temp = DateTime.Parse("11/20/2005");
monthCalendar1.SelectionEnd = temp;
This hightlights the dates from the 15th to the 20th in a dark blue, but the days are not being shown, as they seem to be in white...
Is there a way to set the highlighting color for the calendar control and can i use different highlights ? So that one color can mean VAcation and another sick day, etc.
temp = DateTime.Parse("11/15/2005");
monthCalendar1.SelectionStart = temp;
temp = DateTime.Parse("11/20/2005");
monthCalendar1.SelectionEnd = temp;
This hightlights the dates from the 15th to the 20th in a dark blue, but the days are not being shown, as they seem to be in white...
Is there a way to set the highlighting color for the calendar control and can i use different highlights ? So that one color can mean VAcation and another sick day, etc.