Quote:
Originally Posted by nar
Hi i am new to VB and am writing a small prog to calculate
some values in a formulae..
for the input i have used a text box so that user inputs
the number
and based on that number is stored as a constant to be used in the formule.
and on clicking a button the out put is shown in another
text box.. i am facing a peculiar problem.. when ever the user types in a number he does not receive the correct
out put unless he enters the input as a decimal
for instance if he enters input as 20 the out put val is wrong and if he enters 20.0 the outputvalue is correct...
i have declared all variables as double where the input and other formulea constants are stored,
pls help..to rectify this
Thanks
nar
Hi. Shooting in the dark without your code here :)
When you take the value from the textbox and assign it to a variable make sure to cast it as a double;
-
MyDoubleVariable = CDbl(TextBox1.Text)
-
In the absence of you code, this is the best I can do