monthCalendar

  • Thread starter Thread starter jay
  • Start date Start date
J

jay

given the post date of Septemtber,I have set the
monthCalendar.calendardimensions = 1,3. This displays Sept, Oct and
Nov, but I would like to display Aug, Sept, and Oct. Is there a
property that will allow this ?
 
Use SetSelectionRange, then set a date.

Me.MonthCalendar1.SetSelectionRange(Date.Parse("8/1/07"),
Date.Parse("10/30/07"))
Me.MonthCalendar1.SetDate(Date.Parse("9/1/07"))
 
Back
Top