VBA-tools/VBA-JSON

How to delete an object in this VBA-JSON tool?

han31ye opened this issue · 3 comments

This tool works! However, could any experts give advise that how to delete an object in the Json? E.g. change {"a":1, "b":2, "c":3} to {"b":2, "c":3} by this tool? Many thanks!

VBA-JSON uses Microsoft Scripting.Dictionary to represent a JSON object. You must use the Remove method to delete a property key of the JSON object.

Dear Sir, many thanks! i will try to study you idea....

Dear Sir