New Operator
Syntax New objtype
Group Operator
Description Returns a new instance of objtype.
Parameter Description
objtype This is the new object's type.
See Also Objects.
Example
'#Language
"WWB-COM"
Sub Main
Dim obj As
Object
Set obj = New
Dictionary
End Sub