MonthCalendar control question

I'm using VS 2005 beta 2

I want the MonthCalendar control to return the single day selected.

I have MaxSelectionCount = 1.

What I get back though is this:

"SelectionRange: Start: 5/5/2005 12:00:00 AM, End: 5/5/2005 12:00:00 AM"

How do I get the single day date?

Despite what the documenation says, the MonthCalendar control does not have the .SelectionStart nor the .SelectionEnd property.

Thanks!

[444 byte] By [vbMark] at [2008-1-21]
# 1

The MonthCalendar control does have a SelectionStart and SelectionEnd properties they are just not visible in the designer.

If MaxSelectionCount = 1, then both the SelectionStart or SelectionEnd properties return the date (as a DateTime) of the date that was selected.

DavidM.Kean at 2007-8-21 > top of Msdn Tech,Visual Basic,Visual Basic Language...
# 2
Yep, you're right. It worked fine. Thanks!
vbMark at 2007-8-21 > top of Msdn Tech,Visual Basic,Visual Basic Language...