1.

How can you create an Object in VBScript?

Answer»

we need to declare the object and instantiate it using Set Keyword.

Example −

Dim obj  Set obj = CreateObject("Scripting.Dictionary")


Discussion

No Comment Found