How to write exponential numbers in a TextBox

Falcon88

Registered User.
Local time
Today, 05:17
Joined
Nov 4, 2014
Messages
309
hiiii

i have a textbox (Text) i need to store exponential numbers in it .

Is it possible and how?
is not Like: 4.0-10.0 ×10^3 /µl


[FONT=&quot]
[/FONT][FONT=&quot][/FONT]

[FONT=&quot][/FONT] [FONT=&quot]
[/FONT][FONT=&quot][/FONT]
 
Exponential numbers aren't a thing, exponential notation is. I mean every number can be expressed in exponential notation (see logarithms). So you really have to be more clear as to what you want.

2^3 can be stored in one numeric field as 8
Or in one text feild as "2^3"
Or in 2 numeric fields with one field for the base (2) and the other for the power (3)

So, in conclusion, I don't really understand your question. Exponent numbers aren't a thing, exponent notation is.
 
Exponential numbers aren't a thing, exponential notation is. I mean every number can be expressed in exponential notation (see logarithms). So you really have to be more clear as to what you want.

2^3 can be stored in one numeric field as 8
Or in one text feild as "2^3"
Or in 2 numeric fields with one field for the base (2) and the other for the power (3)

So, in conclusion, I don't really understand your question. Exponent numbers aren't a thing, exponent notation is.
very thanks

i want to stores them in the form of the exponent.
 
Exponential notation is written as Significand E Exponet.

For example, 51726 can be written as 5.1726E4

The letter N can be substituted for E.
 

Users who are viewing this thread

Back
Top Bottom