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

"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, 190👍, 0💬

Sub (Subroutine) Procedure Example
This section provides a tutorial example on how to use a subroutine procedure. A 'Call' statement should be used to invoke a subroutine procedure.
2022-10-01, 185👍, 0💬

About This Book
This section provides some detailed information about this book - __title__.
2022-10-01, 183👍, 0💬

Event Listeners and Objects
This section provides a quick description of event trigger attributes on different HTML tags and the 'event' object representing the event with detail information about the event. A tutorial example is provided to display mouse location by adding a listener to the mouse-pushed-down event.
2022-10-01, 183👍, 0💬

Variable Inspection - Data Type Validation
This section describes why variables need to be inspected when receiving it in a procedure and how to inspect a variable to determine its data type.
2022-10-01, 174👍, 0💬

What is WSH (Windows Script Host)?
This section describes WSH (Windows Script Host) and its features. WSH is a Windows system administration tool to run VBScript code to common administrative tasks.
2022-10-01, 174👍, 0💬

Arithmetic Operations
This chapter provides tutorial examples and notes about VBScript arithmetic operations. Topics include introductions to 8 arithmetic operations: Addition (+), Subtraction (-), Unary Negation (-), Multiplication (*), Division (/), Integer Division (\), Modulus (Mod), and Exponentiation (^); detailed ...
2022-10-01, 173👍, 0💬

"Array()" Function - Returning a Scalar Reference of an Array
This section provides a tutorial example on how to use 'Array()' function to return a scalar reference of new dynamic-size array. The returned array reference can be used like an array.
2022-10-01, 172👍, 0💬

Data Literals
This section provides a quick introduction of data subtype literals. Examples of data literals are provided for Integer, Long, Single, Double, String, Boolean, Date, Empty and Null.
2022-10-01, 170👍, 0💬

"Dim x(n)" - Fixed-Size Array Example
This section provides a tutorial example on how to declare a fixed-size array with 'Dim x(n)'. 'ReDim x(n)' statement can not be used on fixed-size arrays to change their sizes.
2022-10-01, 163👍, 0💬

Regular Expression Pattern Match and Replacement
This chapter provides tutorial examples and notes on regular expression support in VBScript. Topics include 'RegExp' class and objects, setting up regular expressions and match option flags, applying a pattern for matches and replacements, checking MatchCollection and SubMatches collection objects, ...
2022-10-01, 162👍, 0💬

Example of Regular Expression Match and Replacement
This section provides a tutorial example of how to perform a pattern match and replacement with a regular expression using RegExp objects. Examples of sub matches are also included.
2022-10-01, 160👍, 0💬

"Mod" - Arithmetic Modulus Operation
This section provides some detail rules and a tutorial example on how arithmetic modulus operation works in VBScript.
2022-10-01, 158👍, 0💬

"While" Statements
This section describes how 'While' statements work in VBScript. A block of statements is repeated as long as the specified condition is true.
2022-10-01, 158👍, 0💬

IE Option Setting - Enable Script Debugging
This section provides a tutorial example on how to enable the script debugging option in IE 6.0 to watch the runtime error message raised from a VBScript example code.
2022-10-01, 157👍, 0💬

"Function" and "Sub" Procedures
This chapter provides tutorial examples and notes about function and subroutine procedures. Topics include defining function procedures and subroutine procedures, invoking procedures, passing arguments by reference or by value, checking scope of global and local variables.
2022-10-01, 156👍, 0💬

Loop Statements - "For", "While", and "Do"
This chapter provides tutorial examples and notes about loop statements. Topics include 'For Next' statements, 'While' statements, 'Do' statements, examples of loop of loop statements.
2022-10-01, 153👍, 0💬

Setting Up IIS to Run ASP Pages - asp.dll
This section provides a tutorial example on how to set up IIS 5.0 to run ASP pages. The important step is to link the .asp extension to the asp.dll library.
2022-10-01, 153👍, 0💬

What Is VBScript?
This section provides a quick introduction of VBScript as scripting language for Windows systems. VBScript allows you to write script code to be executed in many host environments such as Internet Explorer and Internet Information Services for Web page scripting.
2022-10-01, 151👍, 0💬

VBScript and Supporting Environments
This section provides a list environments that support VBScript.
2022-10-01, 150👍, 0💬

Variable Declaration and Assignment Statement
This chapter provides tutorial examples and notes about variables in VBScript. Topics include declaring variables explicitly and implicitly, 'Dim' statement, assignment statement, variable default values, the Empty value.
2022-10-01, 147👍, 0💬

Class, Property, Method and Related Statements
This section describes general rules on creating your own classes in VBScript. A list of class related statements is provided.
2022-10-01, 147👍, 0💬

"StringBuffer" - A Class Example
This section provides a tutorial example of simple class, StringBuffer, which allows you to build long strings with an internal array as the storage.
2022-10-01, 147👍, 0💬

Array References Work Like Arrays
This section provides a tutorial example on how to use an array reference like an array to access referenced array elements, to re-size the referenced array, and to pass the referenced array into functions.
2022-10-01, 145👍, 0💬

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