I’ve been abused by the String() function in VBS.
In a class, with a class variable int, calling
result = String(int,".")
just does not work! Changing the code to
result = String(CInt(int),".")
doesnt work. Setting another variable like this
dim L L = CInt(int) result = String(L,".")
doesnt work either.
What am I overlooking?