I’m working with VBA and need to save data in type key=>value to getting fastest; This data type help me cache responese text from http request, increase query speed. But I don’t know what is the best way to do it? I need a data type same as php array with key=>value! Thank for help!
I’m working with VBA and need to save data in type key => value
Share
Have you looked at dictionary object?
It’s available as part of the Microsoft Scripting Runtime. A clear example of how to add this is given by this SO answer.
(Source: http://www.techbookreport.com/tutorials/vba_dictionary.html)