You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have added to parseNumber():
If InStr(value, ".") Or InStr(value, "e") Or InStr(value, "E") Then
' for PT Local Settings where decimal is ","
If CStr(1.2) = "1,2" Then value = Replace(value, ".", ",",
1, -1, 1)
parseNumber = CDbl(value)
Else
parseNumber = CInt(value)
--
Are you planning adding support for JSON-RPC ? That would be nice.
Original issue reported on code.google.com by [email protected] on 12 Jun 2009 at 9:53
The text was updated successfully, but these errors were encountered:
Original issue reported on code.google.com by
[email protected]
on 12 Jun 2009 at 9:53The text was updated successfully, but these errors were encountered: