|
-
February 17th, 2010, 07:22 AM
#1
[RESOLVED] Select specific date on calendar
I want a specific date to be selected on my calendar. MSDN advises to use the property SelectedDate (http://msdn.microsoft.com/en-us/libr...sd(VS.71).aspx) but that isnt recognized in my C# app!
Code:
myCalendar.SelectedDate = employee.BirthDate;
Instead I used this:
Code:
myCalendar.TodayDate = employee.BirthDate;
The problem with this is that it states that TODAYS date is the employees birth date. I however want it to state that the selected day is the employees birth date without the words "today: " infront of it. Is this possible? I tried using the method setDate but I am not too sure how it works...
Tags for this Thread
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|