Stuct.Data (ByVal Name As String) = Object
A string that contains the key/name.
Object. The object associated with key/name.
To store a global object:
Set Scripting.Globals(“MyGlobalObjName”).Data = myObj
To output the global object’s name:
MsgBox Scripting.Globals("MyGlobalObjName").Name
’ Returns the value of myObj.Name