G Guest Feb 16, 2007 #1 Hi, How can I create a calendar control for the months other than the current month. Thanks.
M Mark Rae Feb 16, 2007 #2 How can I create a calendar control for the months other than the current month. Click to expand... MyCalendar.VisibleDate = DateTime.Now.AddMonths(1); // next month MyCalendar.VisibleDate = DateTime.Now.AddMonths(-1); // previous month
How can I create a calendar control for the months other than the current month. Click to expand... MyCalendar.VisibleDate = DateTime.Now.AddMonths(1); // next month MyCalendar.VisibleDate = DateTime.Now.AddMonths(-1); // previous month