Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi
How do I set a reference to MS Scripting runtime in order to run Scripting.Dictionary Thanks -- Message posted from http://www.ExcelForum.com |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Go in to the VBE. Select ToolsReferences menu, and in the list box look for
an item called 'Windows Scripting Runtime, and check that item. -- HTH Bob Phillips ... looking out across Poole Harbour to the Purbecks (remove nothere from the email address if mailing direct) "ajliaks " wrote in message ... Hi How do I set a reference to MS Scripting runtime in order to run a Scripting.Dictionary Thanks. --- Message posted from http://www.ExcelForum.com/ |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
in the VBE, Tools=References, scroll down through the list until you see
Microsoft Scripting Runtime. Click the checkbox and the click OK. You should then see scripting in the object browser. or use late binding (no reference required) Sub Tester1() Dim dic As Object Set dic = CreateObject("Scripting.Dictionary") dic.Add "ABCD", "Item1" dic.Add "ABCE", "Item2" MsgBox dic.Item("ABCD") End Sub -- Regards, Tom Ogilvy "ajliaks " wrote in message ... Hi How do I set a reference to MS Scripting runtime in order to run a Scripting.Dictionary Thanks. --- Message posted from http://www.ExcelForum.com/ |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Scripting Help | Excel Discussion (Misc queries) | |||
VBA scripting | Excel Discussion (Misc queries) | |||
Scripting | Excel Discussion (Misc queries) | |||
Scripting Question | Setting up and Configuration of Excel | |||
5.6 Scripting | Excel Programming |