SelEnd, SelStart Properties Example

Assuming the MaxSelCount property is set to 7, the following code selects the days from November 8, 1998 to November 14, 1998:

With MonthView1
   .MultiSelect = True
   .Value = CDate("11/8/98")
   .SelStart = CDate("11/8/98")
   .SelEnd = CDate("11/14/98")
End With

Setting the Value property inherently sets the SelStart and SelEnd properties to the same date. Without setting the Value property first, setting the SelStart property would have selected all days between the currently selected date and the SelStart date.