C#

Moderators: None (Apply to moderate this forum)
Number of threads: 2720
Number of posts: 5746

This Forum Only
Post New Thread
Single Post View       Linear View       Threaded View      f

Report
Format Exception_Input String was not in correct format Posted by mikernable on 30 Oct 2011 at 6:28 AM
I am using windows forms and i am trying to get some doubles as input to do some calculations

The input is in textBox which is by default String, it needs to be converted to the type i am using,

I am doing this on the
public void textBox2_TextChanged(object sender, EventArgs e)
{}
method.

I have tried the followings:
double a;

a = Convert.ToDouble(textBox2.Text);
a = Double.Parse(textBox2.Text);

but both of them have a runtime error, Format Exception was unhandled
Input string was not in a correct format.

Any idea to solve the problem??



Report
Re: Format Exception_Input String was not in correct format Posted by masterakos on 13 Nov 2011 at 11:36 PM
Hello.

There is nothing wrong about : double a=double.parse(txtbox.text); thats for sure ...

You get the error in run time i guess cause there is no numbers in text.

Anyway you can try this...

double a;
bool parsed;

parsed = double.tryParse(txtbox.text,a);

If(parsed) { messagebox.show("a="+a.toString()); }
else { messagebox.Show("Could not be parsed"); }



 

Recent Jobs

Official Programmer's Heaven Blogs
Web Hosting | Browser and Social Games | Gadgets

Popular resources on Programmersheaven.com
Assembly | Basic | C | C# | C++ | Delphi | Flash | Java | JavaScript | Pascal | Perl | PHP | Python | Ruby | Visual Basic
© Copyright 2011 Programmersheaven.com - All rights reserved.
Reproduction in whole or in part, in any form or medium without express written permission is prohibited.
Violators of this policy may be subject to legal action. Please read our Terms Of Use and Privacy Statement for more information.
Operated by CommunityHeaven, a BootstrapLabs company.