The MonthView control is not displaying the day names such as Mon, Tue,...
Any idea how to get them to display.
Printable View
The MonthView control is not displaying the day names such as Mon, Tue,...
Any idea how to get them to display.
The MonthView doesn't have WeekDayName, but VB does:
Private Sub MonthView1_DateClick(ByVal DateClicked As Date)
Debug.Print WeekdayName(MonthView1.DayOfWeek)
End Sub
Which MonthView control are you using, from which component library?Quote:
The MonthView control is not displaying the day names such as Mon, Tue,...
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?
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.
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.