Pls Help - Calendar Control: Other Months Days

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

Guest

is there someway to disable the Other Months day(the previous and next months
days) s from appearing?
If so, can you let me know how?

Thanks so much for your help!
 
Hi Ann,

For this, you need to change the CalendarDimensions property of the
MonthCalendar control. Setting it to 1,1 would display the current month
only and not the previous and next months.

You can also code for this:

monthCalendar1.CalendarDimensions = new System.Drawing.Size (1,1);

Thanks
Mona[Grapecity]
 
Back
Top