vba - Access Dictionary Data Type from Word -
i need access dictionary data type microsoft word. added reference scripting library, word has it's own dictionary data type can't turn off or put it's priority lower. confuses desired dictionary, decided use trick:
sub routine() dim t t = createobject("scripting.dictionary") ' processing... end sub it works, think knowledge power, , don't late binding, please tell me how access dictionary data type word.
using full name of class scripting.dictionary should resolve ambiguity of dictionary class consider.
sub routine() dim d scripting.dictionary set d = new scripting.dictionary debug.print typename(d) end sub in way same doing while using createobject.
Comments
Post a Comment