Class Object

Class Object,Dictionary Object,Err Object,FileSystemObject Object,Match Object,Matches Collection,RegExp Object,SubMatches Collection Home home | Other Resources other resources | Advertise with us advertise | Link to us link to us | Contact us contact | Bookmark Us!
Google
 
Where can I find good Windows Web Hosting to host my VBScript Site?
You can find good Windows Hosting which support VBScript, ASP, ASP.Net,VisualStudio.Net and MSSQL at a very reasonable low monthly fee at EasyCGI.com and DiscountASP.Net

Class Object

The object created using the Class statement. Provides access to the events of the class.

Remarks

You cannot explicitly declare a variable to be of type Class. In the VBScript context, the term "class object" refers to any object defined using the VBScript Class statement.

Once you have created a class definition using the Class statement, you can create an instance of the class using the following form:

Dim X
Set X = New classname

Because VBScript is a late-bound language, you cannot do any of the following:

Dim X as New classname

-or-

Dim X
X = New classname

-or-

Set X = New Scripting.FileSystemObject
Events

Initialize Event | Terminate Event

See Also

Class Statement | Dim Statement | Set Statement


VBScriptOnline.com - Class Object,Dictionary Object,Err Object,FileSystemObject Object,Match Object,Matches Collection,RegExp Object,SubMatches Collection