Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Wanet Telecoms Ltd on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

monthview control bold day

Status
Not open for further replies.

random260

Programmer
Mar 11, 2002
116
US
This is driving me up a wall - I must be having a bad VB day. I just tried the MonthView control for the first time, and it says you can make any day (or more then one at a time) bold, but I can't for the life of me figure out HOW. The sample code to "simulate" the feature for multiple months is no help. What's the easy way (with code) to just make 1 stupid day bold please? Thanks
 
Try this:
Private Sub MonthView1_DateClick(ByVal DateClicked As Date)
MonthView1.DayBold(MonthView1.Value) = True
End Sub

________________________________________________________________
If you want to get the best response to a question, please check out FAQ222-2244 first

'People who live in windowed environments shouldn't cast pointers.'
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top