Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am trying to convert an SMS to double. I'm creating a monitoring system where values like "45.2" are sent to another modem.

I would like to convert 45.2 (which I think is string initially and placed in a textbox) to double so I can do comparison upon receiving it.

I have tried this but got errors:

Dim strMeasurement As String = txtMessage.Text.Trim
Dim dblMeasurement As Double = CDbl(strMeasurement)

Thanks.

share|improve this question
What error are you getting? The code is correct (as in, it compiles and will yield some result … it may be the wrong result depending on language settings). – Konrad Rudolph May 3 '12 at 11:51
It works now, I used Double.TryParse() – Jpeh Noynay May 3 '12 at 13:14
Programming without understanding is cargo cult. You should try to find and understand the cause of the error, not just use a solution that “fixes” the problem (for the time being!) without understanding what caused it and how to prevent it. – Konrad Rudolph May 3 '12 at 13:21

2 Answers

up vote 2 down vote accepted

Use Double.TryParse() instead

share|improve this answer
Thanks! It worked. – Jpeh Noynay May 3 '12 at 13:14

as rahul said:
use

Double.tryParse(stringvalue, doublevalueTofill)  

it returns a true if successful otherwise false.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.