Programming Reference Manual
 
Syntax
 
New objtype
 
Description
Returns a new instance of objtype.
 
Parameter
Description
objtype
This is the new object's type.
See Also
Example
 
Sub Main
Dim obj As Object
Set obj = New Dictionary
End Sub