Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Dictionary object

Status
Not open for further replies.

ghobbes98

Programmer
Feb 7, 2002
62
IE
I am trying to create a dictionary object with the following code

Set d = CreateObject(Scripting.Dictionary)

but I get method or date member not defined however I have microsoft scripting runtime referenced which should allow me to create a dictionary object. scrrun version that I have is 5.6.0.6626.
Does anybody have any ideas as I don't really have the time to go code all that myself
 
You need quotes around "Scripting.Dictionary" --

Set d = CreateObject("Scripting.Dictionary")

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top