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'm testing web api call in VBA Word but I'm experiencing an issue trying to convert the result.
When I do :
"
Dim response As Object
Set response = JsonConverter.ParseJson(request.ResponseText)
"
and compile, it point out the JsonConverter file displaying the error "incorrect use of the New keyword".
Here is the concerned part in the JsonConverter file :
"
Private Function json_ParseObject(json_String As String, ByRef json_Index As Long) As Dictionary
Dim json_Key As String
Dim json_NextChar As String
Set json_ParseObject = New Dictionary (<------- The line error )