G
Guest
In the sample code for Programming Microsoft Visual Basic.NET by Francesco
Balena (Microsoft Press) there is a program (ExprEvaluator) that evaluates
expressions. It has a bug in that when the expression evaluates to a near
zero value(i.e. one that the system expresses in scientific notation), a
system error occurs.
For example sin(3.1415927) or 1-0.999999
I would like to use the fundamentals in a broader application where I will
need to be able to evaluate expression that result in numbers like 1.342 E -6.
How might this be done?
Is it possible to force the system to express low numbers in standard
notation (.000001342)?
Balena (Microsoft Press) there is a program (ExprEvaluator) that evaluates
expressions. It has a bug in that when the expression evaluates to a near
zero value(i.e. one that the system expresses in scientific notation), a
system error occurs.
For example sin(3.1415927) or 1-0.999999
I would like to use the fundamentals in a broader application where I will
need to be able to evaluate expression that result in numbers like 1.342 E -6.
How might this be done?
Is it possible to force the system to express low numbers in standard
notation (.000001342)?