|
-
Dec 1st, 2003, 11:23 AM
#1
Thread Starter
Fanatic Member
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................
I am curretly building a defect management system for software and web developers,
If you wana try it out (beta test) and keep it for free just send me a message
-
Dec 1st, 2003, 05:32 PM
#2
Addicted Member
The bolded dates in a month calendar are already stored in an array?
What exactly do you want?
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
-
Dec 2nd, 2003, 04:08 AM
#3
Thread Starter
Fanatic Member
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.
I am curretly building a defect management system for software and web developers,
If you wana try it out (beta test) and keep it for free just send me a message
-
Dec 2nd, 2003, 08:21 AM
#4
Addicted Member
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
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|