TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
Bobby White
NA
20
0
Cannot implicitly convert type "String" to "System.Windows.Forms.Label"
Jan 27 2010 6:06 PM
What does this mean?
Im using windows form, and heres my code so far, Please help!
double number1;
double number2;
double result;
number1 = double.Parse(textBox1.Text);
number2 = double.Parse(textBox2.Text);
result = Math.Sqrt((number1 * number1) + (number2 * number2));
label1 = result.ToString();
Reply
Answers (
4
)
Getting Process ID of a my running process
Quick Question about what Im doing wrong