Link to home
Start Free TrialLog in
Avatar of ba272
ba272

asked on

What event do I intercept when using a MonthCalendar object?

Greetings,

When using a MonthCalendar, I am having trouble finding the event to handle in order to capture a user click on a given date.  I'd like to capture that event so I can display the date on a button, which they can press to hide the MonthCalendar.

Does anybody know which event to handle?

Thanks,
Bob
ASKER CERTIFIED SOLUTION
Avatar of aaronfeng
aaronfeng

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of ba272
ba272

ASKER

Thanks.

Would you happen to know how to get the selected date from the control?

Thanks,
Bob

PS Nice site.
You want to get the date user just clicked on right?

So it would be this (it's also listed above):

this.monthCalendar1.SelectionEnd.ToString();

Cheers,

Aaron
Avatar of ba272

ASKER

Thanks.