Hi,
when I have a double variable f.e. v = 0.00003215478954...
i do not want to see all these decimals and I set round(v,6)
when I put this in messagebox.show i see 3.2E-05 but I want to see 0.000032
I have a solution but is this the shortest ?
v = v*10^6
v = floor(v)
v = v/10^6
Thanks for any response
when I have a double variable f.e. v = 0.00003215478954...
i do not want to see all these decimals and I set round(v,6)
when I put this in messagebox.show i see 3.2E-05 but I want to see 0.000032
I have a solution but is this the shortest ?
v = v*10^6
v = floor(v)
v = v/10^6
Thanks for any response