adalton11 Posted April 21, 2004 Posted April 21, 2004 Anyone know how i can bold multiple days into the month calendar control? I'm using a loop to get the creation dates of files in a folder, and i want to hilight/bold them on the calendar so people can tell whether the files exist for that date. Thanks, Anthony Quote
*Experts* jfackler Posted April 22, 2004 *Experts* Posted April 22, 2004 Anyone know how i can bold multiple days into the month calendar control? I'm using a loop to get the creation dates of files in a folder, and i want to hilight/bold them on the calendar so people can tell whether the files exist for that date. Thanks, Anthony Dim boldeddates() As Date boldeddates = New Date() {#4/21/2004#, #4/22/2004#, #4/29/2004#} MonthCalendar1.BoldedDates = boldeddates Jon Quote
JABE Posted April 22, 2004 Posted April 22, 2004 Another alternative is .AddBoldedDate(theDate) when you're adding one bolded date at a time. Just don't forget to call .UpdateBoldedDates() afterwards. Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.