I just went into the clsMonthCal module and commented out the following
code in the class's Initialize event. It worked as expected with no
dates being displayed in bold.
' Set DayState
' For this example we will set one day per month
' corresponding to the Month number
Erase BoldDayStates
' Here is an example of how to Set the BoldDayState prop.
'
' SetBoldDayState 2003, 1, 1 ' ', Twenty:=True
' SetBoldDayState 2003, 2, 2 'numMonth:=2, Two:=True ', TwentyOne:=True
' SetBoldDayState 2003, 3, 3 'numMonth:=3, Three:=True ',
TwentyTwo:=True
' SetBoldDayState 2003, 4, 4 'numMonth:=4, Four:=True ',
TwentyThree:=True
' SetBoldDayState 2003, 5, 5 'numMonth:=5, Five:=True ',
TwentyFour:=True
' SetBoldDayState 2003, 6, 6 'numMonth:=6, Six:=True ', TwentyFive:=True
' SetBoldDayState 2003, 7, 7 'numMonth:=7, Seven:=True ',
TwentySix:=True
' SetBoldDayState 2003, 8, 8 'numMonth:=8, Eight:=True ',
TwentySeven:=True
' SetBoldDayState 2003, 9, 9 'numMonth:=9, Nine:=True ',
TwentyEight:=True
' SetBoldDayState 2003, 10, 10 'numMonth:=10, Ten:=True ',
TwentyNine:=True
' SetBoldDayState 2003, 11, 11 'numMonth:=11, Eleven:=True ',
Thirty:=True
' SetBoldDayState 2003, 12, 12 'numMonth:=12, Twelve:=True ',
ThirtyOne:=True
'
Let me know if you are still having trouble.
--
HTH
Stephen Lebans
http://www.lebans.com
Access Code, Tips and Tricks
Please respond only to the newsgroups so everyone can benefit.
Ken said:
I am having a problem with days that are bold. I have commented out
all of the lines in the class initialize event that call
SetBoldDayState. The odd thing is that the days that are bold were
never set with SetBoldDayState. Does anyone know how to makes these
days not bold.