Home |
Search |
Today's Posts |
#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/ |
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 |