-
BOLD Dates
anyone know how i can stick bolded date from a month calendar in to an array the system code is like this
Me.MonthCalendar1.BoldedDates = New Date() {New Date(2003, 12, 10, 0, 0, 0, 0), New Date(2003, 12, 11, 0, 0, 0, 0)}
New Date(2003, 12, 11, 0, 0, 0, 0)}
ummm nice way to store dates................
-
The bolded dates in a month calendar are already stored in an array?
What exactly do you want?:confused:
Code:
Me.MonthCalendar1.MonthlyBoldedDates = New System.DateTime() _
{New System.DateTime(2002, 1, 15, 0, 0, 0, 0), _
New System.DateTime(2002, 1, 30, 0, 0, 0, 0)}
that sets the bolded dates in the array
-
What would be nice is if i could stick all my dates that i want in bold in an arraylist because im using dates that are stored in a database.
-
Try this:
Code:
Dim i as integer
With DsDates.Dates
For i = 0 to .Count
Dim d as date= .rows(i)("Dates")
Me.MonthCalendar1.AddBoldedDate(d)
Next
End With