D David Mar 7, 2007 #1 Using the calendar control, how do I set my calendar to start at 2005 instead of 2007 at runtime?
G Guest Mar 7, 2007 #2 Put the following code in the Form_Load method of the form that the calendar control is on. MonthCalendar1.SelectionStart = new date(2005,1,1) MonthCalendar1.SelectionEnd = new date(2005,1,1)
Put the following code in the Form_Load method of the form that the calendar control is on. MonthCalendar1.SelectionStart = new date(2005,1,1) MonthCalendar1.SelectionEnd = new date(2005,1,1)
D David Mar 7, 2007 #3 Put the following code in the Form_Load method of the form that the calendar control is on. MonthCalendar1.SelectionStart = new date(2005,1,1) MonthCalendar1.SelectionEnd = new date(2005,1,1) Click to expand... Thanks
Put the following code in the Form_Load method of the form that the calendar control is on. MonthCalendar1.SelectionStart = new date(2005,1,1) MonthCalendar1.SelectionEnd = new date(2005,1,1) Click to expand... Thanks