1.

How to create a Class in VBScript?

Answer»

VBScript classes are enclosed within Class .... End Class

'Defining the ClassClass classname    'Declare the object name...End Class' Instantiation of the ClassSet objectname = new classname


Discussion

No Comment Found