Latest Answer: The main difference is function returns a value where as a Sub-procedure does not. ...
Latest Answer: You can declare variables with the Dim, Public or the Private statement. Like this: dim name name=some value ...
Latest Answer: When you use the Option Explicit statement, you must explicitly declare all variables using the Dim, Private, Public, or ReDim statements. If you attempt to use an undeclared variable name, an error occurs.Use Option Explicit to avoid incorrectly typing ...
Latest Answer: JavaScript is better than VB Script.VB Script does not support client side validation where as Jscript supports it.For Eg: If we want to validate some date before sending to the server, Vb script doesn't support it where as JavaScript suports it. ...
How are arrays defined in VBScript?
Latest Answer: Arrays are Declared like this:DIm A as Variant ---> Where "A" is an Array.('Declaration part ---) A= Array("Value1",Value2"..........) (Definition part) ...
Latest Answer: VBScript has only one data type called a Variant. A Variant is a special kind of data type that can contain different kinds of information, depending on how it's used. Because Variant is the only data type in VBScript, it's also the data type ...
Latest Answer: Mostly Internet Explorer because both are of microsoft.But it also support netscape. ...
View page [1] 2 3 Next >>

Go Top