calendar control help
This code will make text apper in the cell of the calendar control. I need to know how to make the text clear when the form closes or if the user clicks on the cell text. Thanks for any help
If (e.Day.Date = specialdate) Then
e.Day.IsSelectable = True
Else
e.Day.IsSelectable = False
End If
'Text will apear in cell
If e.Day.IsSelected Then
e.Cell.Text = "Specialdate"
|