silverfrost Site Admin
Joined: 29 Nov 2006 Posts: 191 Location: Manchester
|
Posted: Tue Sep 07, 2004 9:57 pm Post subject: Making %rf display numbers in non-exponential format |
|
|
Summary
The %rf format code uses the exponential format for numbers less than 0.01 by default.
Solution
You can change this limit to a smaller number by using:
Code: | call set_clearwin_float@("rf_exp_limit", 0.00001) |
where 0.00001 is the limiting number you wish to use. You should call this function before you use the %rf format code in a winio statement. |
|