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")

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

Example:

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



Discussion

No Comment Found