Month Calendar help

  • Thread starter Thread starter Steven
  • Start date Start date
S

Steven

Hi Everyone,

I am trying effortlessly with this month calendar control. Basically
in a nutshell what I am trying to do is this.

If I have a selection of dates for this month November 2009.

Dates: 9, 11, 12, 13, 15, 18, 29, 20, 22, 25, 27, 30

When I load the month calendar, how can I get all of these dates to be
bolded or to have a selection square around each date?

I am still trying to figure out how to save the dates and then load
them back into the month calendar control.

Each date actually represents an entry into a db, so on load I will
know what dates actually do have entries by seeing the square around
the date.


Thanks
 
Steven said:
Hi Everyone,

I am trying effortlessly with this month calendar control. Basically in
a nutshell what I am trying to do is this.

If I have a selection of dates for this month November 2009.

Dates: 9, 11, 12, 13, 15, 18, 29, 20, 22, 25, 27, 30

When I load the month calendar, how can I get all of these dates to be
bolded or to have a selection square around each date?

I am still trying to figure out how to save the dates and then load them
back into the month calendar control.

Each date actually represents an entry into a db, so on load I will know
what dates actually do have entries by seeing the square around the date.


Thanks

Try monthCalendar1.AddBoldedDate(new DateTime(2009, 11, 9));
 
Back
Top