-
Notifications
You must be signed in to change notification settings - Fork 576
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
JsonConverter.ParseJson() showing error "incorrect use of the New keyword" #237
Comments
I suspect that you have not included a reference in your VBA project for
Hopefully that clears up the issue. |
Hi @houghtonap, |
A few questions:
|
Great 👍 the pull request #219 solves it for me. Thanks you |
Hi,
Thank you for your response but I've already checked Microsoft Scripting
Runtime in the project. So that's not the problem I guess.
Le mer. 17 août 2022 à 16:10, Andrew Houghton ***@***.***> a
écrit :
… I suspect that you have not included a reference in your VBA project for Microsoft
Scripting Runtime which is where you will find the object
Scripting.Dictionary. The VBA-JSON source assumes that, that reference
has been added to your VBA project.
1. File->Options->Customize Ribbon, in the right pane (Customize the
Ribbon) check the Developer tab to show it, if you have not already done
so, then click the OK button.
2. Click the Developer tab, then click the Visual Basic button on the
ribbon.
3. Click Tools->References, then scroll down the list until you see Microsoft
Scripting Runtime and check it and click the OK button.
Hopefully that clears up the issue.
—
Reply to this email directly, view it on GitHub
<#237 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AS2BMWL7KTTCVSTV5RFHMKTVZTXGFANCNFSM56BGY2FQ>
.
You are receiving this because you authored the thread.Message ID:
***@***.***>
|
Hello everyone,
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
............
"
Any help will be appreciated
The text was updated successfully, but these errors were encountered: