News:

Free Image Hosting:
http://image-host.developers-heaven.net
Share your images free!!!

Main Menu

use SET inVBscript

Started by admin, July 24, 2009, 10:08:48 AM

Previous topic - Next topic

admin

In order to declear variables in VBS you can use :
Dim x
Public y
Private z
and then assign the values as:
x= "string"
y= 19
z=10.5
Don't use SET except you assing an instance of a class to the variable like:
Dim myinstance
Set myinstance = new ClassName
or you will have error: object required