How to print trailing zeros.

 

Hello All,

Is it possible to get "Print" to print trailing zeros, for example if value = 1.4 print 1.4000

Thank you for yr help

 

Try:

Print(DoubleToStr(value,4));

Reason: