Forum Discussion
AlexKaras
13 years agoCommunity Hero
Hi Djordje,
You can issue a Support ticket at http://support.smartbear.com/message/?prod=TestComplete. (Would appreciate if you let know the final result here.)
Also, could you post here the relevant line(s) where you assign the value to this parameter of double type?
I tried this line (DelphiScript)
Log.Message(aqString.Format('%.5f', 0.00003));
and the output in the log was 0.00003 as expected.
For
Log.Message(aqString.Format('%.5f', 3.5e-7));
the output in the log was 0.00000. Also as expected.
But for
Log.Message(aqString.Format('%.5f', '0.00003'));
the output in the log was an error about incorrect parameter type (also as expected).
This is the reason why I am interested about actual code.
You can issue a Support ticket at http://support.smartbear.com/message/?prod=TestComplete. (Would appreciate if you let know the final result here.)
Also, could you post here the relevant line(s) where you assign the value to this parameter of double type?
I tried this line (DelphiScript)
Log.Message(aqString.Format('%.5f', 0.00003));
and the output in the log was 0.00003 as expected.
For
Log.Message(aqString.Format('%.5f', 3.5e-7));
the output in the log was 0.00000. Also as expected.
But for
Log.Message(aqString.Format('%.5f', '0.00003'));
the output in the log was an error about incorrect parameter type (also as expected).
This is the reason why I am interested about actual code.