scripting.dictionary method or data member not found

  • Thread starter Thread starter Amy Blankenship
  • Start date Start date
A

Amy Blankenship

When my code gets to this line:
Set d = CreateObject(Scripting.Dictionary)

I get the message
method or data member not found

I have added a reference to Microsoft Scripting Runtime. What am I missing?

Thanks;

Amy
 
Amy Blankenship said:
When my code gets to this line:
Set d = CreateObject(Scripting.Dictionary)

I get the message
method or data member not found

I have added a reference to Microsoft Scripting Runtime. What am I
missing?

Thanks;

Amy

What you're missing is a couple of quote marks:

Set d = CreateObject("Scripting.Dictionary")
 
Back
Top