Calendar Control (.net 1.1)

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi,

How can I create a calendar control for the months other than the current
month.

Thanks.
 
How can I create a calendar control for the months other than the current
month.

MyCalendar.VisibleDate = DateTime.Now.AddMonths(1); // next month
MyCalendar.VisibleDate = DateTime.Now.AddMonths(-1); // previous month
 
Back
Top