When I try to declare a float variable with a very small value it changes the notation.
Global $interior = 0.00008972
MsgBox(4096, "1", $interior)
$file = FileOpen("Balance.txt", 2)
FileWrite($file, ""&$interior)
FileClose($file)
It shows and writes to file 8.972e-005 not 0.00008972.