PC Review


Reply
Thread Tools Rate Thread

Calendar and C#

 
 
reidarT
Guest
Posts: n/a
 
      13th Feb 2005
I try to get the selected date from the calendar control to a label with
this:
this.Label4.Text = this.Calendar1.SelectedDate ;

but, I get the mesage Cannot implicitly convert type 'System.DateTime to
string'
regards
reidarT


 
Reply With Quote
 
 
 
 
Peter Jausovec
Guest
Posts: n/a
 
      13th Feb 2005
Hi,

Calendar1.SelectedDate is a type of System.DateTime .. try
Calendar1.SelectedDate1.ToString ();


--
Regards,
Peter Jausovec
(http://blog.jausovec.net)
"reidarT" <(E-Mail Removed)> je napisal v sporočilo
news:(E-Mail Removed) ...
>I try to get the selected date from the calendar control to a label with
>this:
> this.Label4.Text = this.Calendar1.SelectedDate ;
>
> but, I get the mesage Cannot implicitly convert type 'System.DateTime to
> string'
> regards
> reidarT
>



 
Reply With Quote
 
David Barkol
Guest
Posts: n/a
 
      13th Feb 2005
You have a type mismatch: this.Calendar1.SelectedDate returns a
DateTime type and Label4.Text expects a string type.

Try:
this.Label4.Text = this.Calendar1.SelectedDate.ToString();

David Barkol
www.neudesic.com

 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Outlook 2007 calendar import hotmail calendar & shared calendar Craig Microsoft Outlook Calendar 1 17th Jul 2008 05:28 AM
SharePoint Calendar vs Exchange User's Shared Calendar vs ExchangePublic Folder of Calendar Items Jeff Microsoft Outlook Calendar 1 3rd Mar 2008 07:03 PM
Need to open a public calendar (Office Calendar - not a user's calendar that is shared) debnla Microsoft Outlook 6 26th Aug 2007 09:42 PM
Moving calendar items from personal calendar to server calendar =?Utf-8?B?ZG9tY28=?= Microsoft Outlook Calendar 1 12th Feb 2007 03:29 AM
Synchronization Calendar(public calendar & private calendar) Jane Microsoft Outlook 0 22nd Jul 2003 05:29 AM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 06:53 PM.