1 2 3 4 5 6 > >>   Sort: Rank

ASP Objects: Request, Response, Session and Application
This section describes additional objects provided by ASP: Request, Response, Session and Application. Your server-side VBScript code will use those objects to convert static Web pages into Web-based applications.
2023-03-01, 906👍, 9💬

"WScript" Runtime Object Hierarchy
This section describes WSH runtime objects: WScript and its properties. A tutorial example is provided on how to use WScript.StdIn and WScript.StdOut.
2023-02-02, 154👍, 1💬

"Err.Raise()" - Raising Your Own Errors
This section provides a tutorial example on how to raise your own runtime errors with the Err.Raise(number, source, description) method. The error number should be in the range of 0 and 65535.
2023-01-28, 15467👍, 4💬

💬 2023-01-28 adheesh: i ment something else

💬 2016-05-07 Herong: Donald, I don't understand your question. More details please.

💬 2016-05-06 Google Chrome 50.0.2661.94 m: Google Chrome Un navigateur Web conçu pour offrir rapidité, simplicité et sécurité Obtenir de l'aide sur l'utilisation de Goog...

💬 2016-05-06 Donald Duck: Please include a list of the different possible values for number. Thanks☺

"Dictionary" Objects to Store Keys and Values
This section describes Dictionary object properties and methods. A tutorial example is provided on how to add and remove keys and values into a Dictionary object.
2022-11-15, 296👍, 1💬

ASP Object Example - Passing Values between Pages
This section provides a tutorial example on how to pass values from one page to another. This example is a very simple registration application with two ASP pages.
2022-10-01, 345👍, 0💬

"Variant" - Data Type and Subtypes
This section provides a quick introduction of VBScript data type, Variant, a list of subtypes: byte, integer, long, single, double, currency, string, Boolean, date, object, error, empty, and null.
2022-10-01, 329👍, 0💬

Creating a Copy of an Array
This section provides a tutorial example on how to create a copy of an array quickly with the array assignment statement.
2022-10-01, 327👍, 0💬

Data Type "Variant()" - Array of Variant Values
This section describes the array data type, Variant(). A tutorial example is provided to show how TypeName() and VarType() functions work on array values.
2022-10-01, 293👍, 0💬

WSH (Windows Script Host)
This chapter provides tutorial examples and notes on WSH (Windows Script Host). Topics include running WSH commands, cscript and wscript, with options; summary of WSH runtime objects; using StdIn and StdOut for input and output; running system commands with script code; defining script jobs in a WSF...
2022-10-01, 233👍, 0💬

"Dim x()" - Declaring Array Variables
This section provides an introduction and examples on how to declare array variables with fixed sizes or dynamic sizes.
2022-10-01, 231👍, 0💬

"On Error Resume Next" - Turning on Error Handling
This section provides a tutorial example on how to use the 'On Error Resume Next' statement to turn on error handling flag. You can use Err.Number > 0 to test if there is any runtime error has been raised or not.
2022-10-01, 230👍, 0💬

Using VBScript with Internet Explorer 10 or Older
This section provides tutorial example on how to embed a VBScript code in a HTML document to be executed by Internet Explorer 10 or older on the local machine.
2022-10-01, 223👍, 0💬

"x(i)" - Accessing Array Elements with Indexes
This section describes how to access array elements for assigning new values and retrieving existing values. 'For Each' statement can also be used to loop through all elements in an array.
2022-10-01, 215👍, 0💬

"Type mismatch" Runtime Error - Assignments to Array Variables
This section describes how values from scalar array variables can be assigned to other scalar or array variables. Runtime error 'Type mismatch' happens when you try to assign scalar values or arrays to array variables.
2022-10-01, 214👍, 0💬

Creating Your Own Classes
This chapter provides tutorial examples and notes on classes and objects. Topics include defining a new class, instantiating a new object, assigning object reference, initializing and terminating an object, defining properties with 'Public' statements and 'Property' procedures, defining methods with...
2022-10-01, 212👍, 0💬

DOM API - The "document" Object
This section provides a quick description of the 'document' object of the DOM API. A tutorial example is provided on building a simple HTML document with the 'document' object.
2022-10-01, 203👍, 0💬

Empty - The Default Value of a Variable
This section provides a tutorial example on how to find out the default value, Empty, of a variable before its first assignment.
2022-10-01, 196👍, 0💬

Date and Time Data Literals
This section provides rules on writing date and time literals, characters enclosed in hash signs. VBScript support several formats for the date string like ISO format and US format.
2022-10-01, 193👍, 0💬

"Erase" Statement - Removing All Elements in an Array
This section provides a tutorial example on how to use a 'Erase' statement to reset all elements to the default value in a fixed-size array, or truncate the size of a dynamic-size array to zero.
2022-10-01, 193👍, 0💬

What Is a Statement?
This section provides an introduction of what is an expression. A data literal or a variable is a simple expression. A single operation or a group of multiple operations is a complex express.
2022-10-01, 183👍, 0💬

"Public/Private" Variables and Dot Operator
This section provides a tutorial example on how to declare public properties for external use and private variables for internal use. The dot, '.', operator allows you to access public properties.
2022-10-01, 181👍, 0💬

"cscript.exe/wscript.exe" Command Version and Options
This section describes how to start 'cscript' or 'wscript' command and what options are available.
2022-10-01, 178👍, 0💬

"Select Case" Statement Examples
This section provides a tutorial example on how to use 'Select Case' statements to select one block of statements based on the equal condition of an expected value.
2022-10-01, 174👍, 0💬

scrrun.dll - Scripting Runtime DLL Library
This chapter provides tutorial examples and notes on scrrun.dll, Scripting Runtime DLL Library. Topics include list of runtime objects supported in scrrun.dll; using 'Dictionary' objects to store keys and values; using 'FileSystemObject' to manage files and folders; using 'Drive', 'Folder' and 'File...
2022-10-01, 174👍, 0💬

1 2 3 4 5 6 > >>   Sort: Rank