Multiselection On a MonthView
I have a monthview With MonthRows=3 and MonthColumns=4
I need to select X days from month x and Also N days from any other months.
But As soon as i selected days from one month and try to select days from other month, the first selected days just dissapear.
Any Help?
Re: Multiselection On a MonthView
I mst admit that I have been having problems with the Monthview control. If you right click on the control and select properties, is MultiSelect selected? Sorry I can't be more helpful.
Nick
Re: Multiselection On a MonthView
You can only select contiguous days and you need to set the max selected
days property to something greater then the default 7 days.
VB Code:
Option Explicit
Private Sub Command1_Click()
MonthView1.MaxSelCount = 365
MonthView1.SelStart = "01/01/2005"
MonthView1.SelEnd = "03/01/2005"
End Sub