Hi,
In VB.NET, it has a calendar component. how could I highlight the date.(with different colour)
For example,
2004/01/20,2004/03/25,2005/04/10
Those date above should be highlighted, could anyone please help?
Thanks,
NewBie
Printable View
Hi,
In VB.NET, it has a calendar component. how could I highlight the date.(with different colour)
For example,
2004/01/20,2004/03/25,2005/04/10
Those date above should be highlighted, could anyone please help?
Thanks,
NewBie
Could anyone please help, it's urgent
Thanks,
NewBie
How about bolding the dates to set them apart from regular dates?
http://www.vbforums.com/attachment.p...postid=1815254
VB Code:
Private Sub frmReport_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load Me.MonthCalendar1.AddBoldedDate("2004/01/20") Me.MonthCalendar1.AddBoldedDate("2004/03/25") Me.MonthCalendar1.AddBoldedDate("2005/04/10") End Sub