Then I trying to return statistic value as real number, apm understands it like integer.
Example:
...
Wscript.Echo "Statistic: 6,4"
Output: 64,00
Example2:
...
strVar = "6,4"
realVar = cDbl(strVar)
Wscript.Echo "Statistic: " & realVar
Output: 64,00
and then i need to return "10,0", using both ways , APM understands it like 1,00 !