473,386 Members | 1,766 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,386 software developers and data experts.

convert to double

Gav
Hi all,

I have a value in a database which is of float and in order to get my value
from my textbox into my database I am doing something along the line of

sqlparm1.value= (float)Convert.ToDouble(textbox1.Text);

however if I say put in 7.8
it saves it as 7.800000190

does anyone know why it's doing this?

Thanks
Gav
Nov 22 '05 #1
4 2366
Because the number 7.8 cannot be accurately represented in binary. Try
using the Decimal data type instead.

Nov 22 '05 #2
Gav
Thanks for the reply but that's worse, if I put in 7.8 it only saves 8.
"Chris Dunaway" <du******@gmail.com> wrote in message
news:11**********************@g14g2000cwa.googlegr oups.com...
Because the number 7.8 cannot be accurately represented in binary. Try
using the Decimal data type instead.

Nov 22 '05 #3
Strange. When I execute the code below, it shows the correct result:

Dim d As Decimal = Convert.ToDecimal("7.8")
MsgBox(d.ToString)

Are you sure you're not calling any other conversions or assigning the
result to any other variable?

Nov 22 '05 #4
> I have a value in a database which is of float and in order to get my
value
from my textbox into my database I am doing something along the line of

sqlparm1.value= (float)Convert.ToDouble(textbox1.Text);

however if I say put in 7.8
it saves it as 7.800000190

does anyone know why it's doing this?

This effect is typical for floating point operations.
This is caused by the fact that one tries to store an number with infinit
decimal digits after the comma in a limited space float, double,...Even
though the number is 7.800000..... it could be stored as 7.800000001xxx or
7.799999999xxx...

The behaviour is unpredictable and can change between 2 processor models...

You have 2 possibilitues:
Either use an accurate number without decimmal digit after the comma in it,
lik INT , but multiply the float with (e.g.) 100 and then truncate.

e.g. (float)7.8 * (int)100 = (int)780 so you store 780.
When you read back you devide by 100 to get the correct 7.8 value.

Make all you calcuations based on the fact that the number is 100 times
bigger and have no decimal values after the comma.
And only convert to the normal floating point thing if you want to visualize
the thing.

The other possibility is to use double or float to make it even more
accurate, but when you want to visualize it, format it in such a way that
the number of digits after the comma is limited. E.g. show all digits except
the last 3 after the comma.

My advice is to avoid floats at all costs unless you have to.

--
http://www.skyscan.be
Nov 22 '05 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

4
by: cindy liu | last post by:
Hi, In .Net, how to convert a string to a double? Thanks in advance! Cindy
12
by: Sydex | last post by:
When I compile code I get error C2664: 'Integration::qgaus' : cannot convert parameter 1 from 'double (double)' to 'double (__cdecl *)(double)' in this part : double Integration::quad2d(double...
2
by: Pascal | last post by:
Why does this not work, and how should i do this convert in stead: string x = double.MinValue.ToString(); double y = Convert.ToDouble(x); i get this exception: An unhandled exception of type...
1
by: Sam | last post by:
How do I convert Julian Date to Calendar Date in ASP.Net 1.1 based on following guideline found at Internet? To convert Julian date to Gregorian date: double JD = 2299160.5; double Z =...
4
by: Daniel Walzenbach | last post by:
Hi, I wonder if somebody could explain me the difference between Double.Parse and Convert.ToDouble. If I'm not mistaken they are implemented differently (I though for a moment they might be the same...
17
by: David Scemama | last post by:
Hi, I'm writing a program using VB.NET that needs to communicate with a DOS Pascal program than cannot be modified. The communication channel is through some file databases, and I have a huge...
3
by: Eric BOUXIROT | last post by:
hi, i must convert all of these eVC++ prototypes to use with VB.NET.... DLLEXPORT long F_BDO_MessageBoxOK(char *IN_title, char *IN_msg ); DLLEXPORT long F_BDO_MessageBoxOUINON(char *IN_title,...
3
by: PeterK | last post by:
I am trying to set Public overridable CreditlimitS() as System.Data.SqlTypes.SqlMoney to Creditlimit as Double like CreditLimitS=creditlimit and get this error "Value of type double cannot be...
4
by: Edwin Knoppert | last post by:
In my code i use the text from a textbox and convert it to a double value. I was using Convert.ToDouble() but i'm used to convert comma to dot. This way i can assure the text is correct. However...
3
by: mrajanikrishna | last post by:
Hi Friends, I am accepting a number from the user entered in a textbox. I want to assign to a variable in my code and assignt this to that variable. double num1 = (double)txtNum1.text; ...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.