How A Double And Decimal Treat 3 And 3.0 And 3.00 Different
Jan 6, 2012
How come a double and decimal treat 3 and 3.0 and 3.00 different?
For example:
Dim dbl As Double = 1 / CInt(TextBox1.Text)
MsgBox(dbl)
If I enter 3 in the TextBox I get: 0.33...
If I enter 3.0 I get: 0.033...
If I enter 3.00 I get: 0.0033...
How do I treat them all as 3?
View 3 Replies
ADVERTISEMENT
Aug 15, 2011
For greater accuracy I should use a Decimal instead of a Double ( so I've been told ). Why then have Microsoft chosen to use DOUBLE for most of the functions that return a floating point value in the Math Class?
[Code]....
View 9 Replies
Mar 30, 2011
If I have the code:Dim x as Decimal = 100.0m
Is it casting from a double to a decimal implicitly. How would I do this explicitly in vb.net?
View 2 Replies
Oct 5, 2011
Let's say I want to convert a Double x to a Decimal y. There's a lot of ways to do that:
1. var y = Convert.ToDecimal(x); // Dim y = Convert.ToDecimal(x)
2. var y = new Decimal(x); // Dim y = new Decimal(x)
3. var y = (decimal)x; // Dim y = CType(x, Decimal)
4. -- no C# equivalent -- // Dim y = CDec(x)
Functionally, all of the above do the same thing (as far as I can tell). Other than personal taste and style, is there a particular reason to choose one option over the other?
EDIT: This is the IL generated by compiling the three C# options in a Release configuration:
1. call valuetype [mscorlib]System.Decimal [mscorlib]System.Convert::ToDecimal(float64)
--> which calls System.Decimal::op_Explicit(float64)
[Code]....
View 3 Replies
Jun 30, 2009
I am working on an application that allow the user to store data as numbers.These numbers are later on used for calculation. The number can be of any type and are saved as string. The problem is when they are used for calculation how can understand when it is better to treat them as doubles and when as decimals?
View 9 Replies
Jun 9, 2011
So, yes, I've tried with these three formats, and the problem remains the same:I have a string, "s"For Each s As String In stringarray and this array is recieving data from a streamreader that is reading a csv file. The data I'm having dificulty reading are these very specific numbers(yes, only these numbers, because phone numbers get home safe and sound).The numbers I'm talking about are usually decimal.ValueList.Add(Convert.ToDecimal(s))
Now, when I convert them like that, they always bring a "D" alongside with them. I've personally checked the string multiple times, and it just has a "1", and somehow, my list recieves "1D" as a number, same thing happens with decimal numbers(0.29D for example). I've tried with Doubles and Integers, the result is the same.
View 1 Replies
Jan 1, 2012
here is a very important matter to be corrected as soon as possible. generally,type double can display an answer correct to more than 20 decimal places. yes,it works fine until here except for exponential system. whenever i try to find a decimal raised to the power of a proper fraction, i get a correct answer but only upto 13 decimal places. that is not fair at all! it is important to get as high precision as possible. consider this example:-
[code...]
i want that number of correct decimal places or approximation,which a windows 7 calculator has. i believe that this is someway easy to get rid of. please support.it is important for programs like calculator,worksheets,databases,etc.
View 12 Replies
Feb 11, 2009
I am writing a program that asks the user for their name and the number of pieces they completed. The employees are paid more depending on the amount of pieces they have completed(i.e. <200 = .50 per piece, 200 to 399 = .55 per piece, etc.). I have to display the amount earned when the user enters the info and hits the calculate button. I have to use Select Case.
I was thinking this would be an easy program but I keep getting an error for each Case saying "Option Strict On disallows implicit conversions from 'Double' to 'Decimal'. I don't understand why it thinks it is a double. It says I can correct this problem by adding "Cdec" before each equation(i.e.
[Code]...
View 5 Replies
Feb 28, 2011
Dim decMonthlyPayment
As Decimal
Dim decPrincipalAtRetirement
[code].....
View 4 Replies
Feb 26, 2009
I'm struggling to solve this problem and am throwing it out to y'all...
For example, if I had a value of 6.5, (representing 6.5 feet), I'd want to separate that value into two values:
6 - 12" sections
1 - 6" section.
This initial value could be any number from 3-16, in .5 increments. (3, 3.5, 4, 4.5, 5, 5.5, etc.)
View 5 Replies
May 24, 2012
I have a piece of code:
Dim Latitude As Double = row("fltLatitude")
Dim Longitude As Double = row("fltLongitude")
Most of the lat/longs that are being fetched from the db using SP are retrieved in properly, except for a couple of records which do not include a period to indicate a lat/long value.I have tried using these:
Convert.ToDecimal(Latitude)
CDec(Latitude)
decimal.Parse(Latitude)
but none of them are working.
View 1 Replies
Apr 18, 2012
I have a double value like 3768.595863. if i round this value then i will get 3768.596 but i want 3768.595.how can i get that?please reply.
View 7 Replies
Jan 8, 2009
is it possible to round a double to a certain number of decimal places
View 1 Replies
Oct 8, 2011
How to i roundup a double number to 6 decimal places in vb.net?
View 1 Replies
Nov 22, 2009
how to get 1.83333333333... to 1.83?
Dim temp_1 As String
temp_1 = 5.50 / 3
Label1.Text = String.Format(temp_1, "{0.00}")
View 4 Replies
Apr 24, 2010
Is there such a thing as a type similar to a point, but contains a pair of decimals, or a pair of doubles, rather than integers? I searched the forums and google with no luck. I can't believe this has never come up before, I must have been using the wrong search terms.
View 4 Replies
Feb 28, 2009
Simple requirement to split a double value inputted into a string to decimal and fractional.I enter 12.1 and it splits it into
12 and then 0.0999999999999996
Where is my 0.0000000000000004 gone??? Did the cpu tax it?I have tried a few other tricks to split the number and i get the same result...The fractional results of each attempt
12.0 0 Amazing!!!!
12.1 0.0999999999999996
12.2 0.199999999999999
[code]....
View 6 Replies
Mar 11, 2009
I am writing an calculator application and i dont know what datatype to use. i mean should the variables be single, double, decimal...?
View 1 Replies
Jul 2, 2009
In the discussion in this thread: [URL] it was reveiled to me that vb.net, using double, could only calculate values up to 18 digits after decimal.... so I started thinking and came up with this class
Public Class LargeNumber
Private pNumber As String
Public Sub New()
[CODE].............
I want to split the string into a series of doubles.... and than combine them into a large number.... The size of each double component should be 18 digits on a 32 bit computer... so that I will have room to add the last carrier...
View 3 Replies
Mar 14, 2012
I'm having some trouble converting a double to a string.I have a double value, like 43.64 and I need a string like this: "43.64"If I try to convert the double to a string I always get "43,64" what doesn't work for me..
View 5 Replies
Jun 27, 2012
What is the cleanest, most readable way to String.Format a decimal with the following criteria
start with a sign symbol (+ or -)
a fixed number of fraction digits
no decimal separator
right aligned
pre-padded with "0"'s
View 3 Replies
Feb 28, 2009
In VB.NET, I am trying to talk to a webservice (that can't be changed) to create and update customer data.The CreateCustomer service expects an object of type ConsumerPerson and the ChangeCustomer service expects an object of type ChangeData.The properties of these two object are exactly the same, so I thought it would be wise to just set the properties using one single function.
View 5 Replies
Aug 7, 2009
I have a custom map (image) for a city which is divided into 12 parts. I have data about each and every part of the city (information like Poll results, population etc). I want to see that information on each part of the image. That is I should be able to divide city image into 12 parts then I want to treat each part as a label. How can I do it in Visual Basic.net windows application?
View 2 Replies
Feb 23, 2010
I'm using a listbox to list my custom objects. I need to use the ListboxSelected event and treat the SelectedItem as MyObject, so I can get certain properties from it... How do I do this?
View 1 Replies
Sep 5, 2011
How should I use linq to sort my data when my data contain both numbers and letters? For example my current linq
Dim MyQuery = From c In XDoc.Descendants() _
Where c.Attribute(Y) IsNot Nothing And c.Attribute(Str) IsNot Nothing _
Order By Val(c.Attribute(Y).Value), Val(c.Attribute(X).Value) _
Select Str = c.Attribute(Str)
Returns something like the following
13
167
172
231
44
49
Which is not what I would like it to be...
The output should be like the one below:
13
44
49
167
172
231
View 2 Replies
Dec 20, 2010
how do you convert a decimal ( decimal place holder = dot) to a decimal (decimal place holder =comma)?
View 6 Replies
Jan 27, 2011
I have a situation where I am handling both single & double mouse click events on a form. In both cases something has to be loaded, however when a double click occurs, I do not wish to execute the code attached to the single click event.Is there a way to intercept the mouse click's and check if double or single and then execute the right event appropriately?
View 2 Replies
Aug 23, 2010
In my VB.NET application I compare words that are recorded using IPA, many of which have many diacritic marks. In one of the comparisons, I compare the words character by character. But when I iterate over the characters, the diacritic marks come out as separate characters (as I would expect since this is unicode)However, a u character is different than a u plus an accent for the purposes of this program and needs to be distinguished.
View 1 Replies
Oct 19, 2010
OdbcDataReader in showing decimal fields Decimal separator disappear with DB2 dsn
View 3 Replies
Aug 27, 2009
After converting all degrees-->decimal, and decimal-->hours, how can i use Tan, Cos and Sin formula in vb.net? I want the user must enter an input (which it is a coordinat-->i already convert the degrees-->decimal value as suggested by stanav and paul.
The questions like this (i only calculate on paper but dont know how to implement in code):
Input user need to enter:
-latitude local (e.g. 1.4875)
-longitude local (e.g. 103.3883333)
[CODE]...
View 23 Replies