We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 22a463a commit 9b3ecf8Copy full SHA for 9b3ecf8
JsonConverter.bas
@@ -1,6 +1,6 @@
1
Attribute VB_Name = "JsonConverter"
2
''
3
-' VBA-JSON v1.0.2
+' VBA-JSON v1.0.3
4
' (c) Tim Hall - https://github.com/VBA-tools/VBA-JSON
5
'
6
' JSON Converter for VBA
@@ -505,7 +505,7 @@ Private Function json_Encode(ByVal json_Text As Variant) As String
505
506
' When AscW returns a negative number, it returns the twos complement form of that number.
507
' To convert the twos complement notation into normal binary notation, add 0xFFF to the return result.
508
- ' https://support.microsoft.com/en-us/kb/272138
+ ' https://support.microsoft.com/en-us/kb/272138
509
If json_AscCode < 0 Then
510
json_AscCode = json_AscCode + 65536
511
End If
specs/VBA-JSON - Specs.xlsm
6.55 KB
0 commit comments