Hi , I am using MonthCalender control in vb.net to select a date. I am able to save the selected date to DB and also retrieve and bold the previous selected date. But even though date is bolded it is not displayed when the form loads. It still highlights today's date. What Do i do to highlight the previous chosen dates. Also i want to disable choosing date range.
I have my code below.
'StartDate is a datetime object
'check if there is any date chosen
If Not IsNothing(StartDate) Then
Me.mcSelectedDate.AddAnnuallyBoldedDate(StartDate)
Me.mcSelectedDate.UpdateBoldedDates()
End If