Calendar

  • Thread starter Thread starter Alberto
  • Start date Start date
A

Alberto

How can I select in a monthCalendar control more than one day?
Thank you
 
Hi Alberto,

Check this sample:
SelectionRange range = new SelectionRange (DateTime.Now,
DateTime.Now.AddDays (10));

monthCalendar1.SelectionRange = range;
 
Can I select diferent ranges? For example, select the day 1 and the day 14.
Thank you
 
Well you can make the dates appear in bold. Use BoldedDates property.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top