|
-
Aug 1st, 2009, 10:50 PM
#1
Thread Starter
Lively Member
[RESOLVED] MonthView Control Missing Day Names
The MonthView control is not displaying the day names such as Mon, Tue,...
Any idea how to get them to display.
-
Aug 2nd, 2009, 07:34 AM
#2
Re: MonthView Control Missing Day Names
The MonthView doesn't have WeekDayName, but VB does:
Private Sub MonthView1_DateClick(ByVal DateClicked As Date)
Debug.Print WeekdayName(MonthView1.DayOfWeek)
End Sub
-
Aug 2nd, 2009, 12:38 PM
#3
Re: MonthView Control Missing Day Names
The MonthView control is not displaying the day names such as Mon, Tue,...
Which MonthView control are you using, from which component library?
The MonthView control from the MS Common Controls-2 6.0 component displays the day names. I don't even think there is a property/option to not display them.
Did you change any of the colours?
Last edited by brucevde; Aug 2nd, 2009 at 12:44 PM.
-
Aug 2nd, 2009, 06:22 PM
#4
Thread Starter
Lively Member
Re: MonthView Control Missing Day Names
Thanks for the responses.
I thought it was suppose to display the day stuff.
Using Microsoft Windows Common Controls - 2 6.0 (SP6).
Have not changed any colors.
Maybe changed the font.
-
Aug 2nd, 2009, 07:13 PM
#5
Thread Starter
Lively Member
Re: MonthView Control Missing Day Names
You were on the right track with looking at the colors.
The day names are shown in white and the default background is white, duh.
Changed teh MonthBackground property to a darker color and all is well.
Thanks again for the help.
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
|