<< < 1 2 3 4 5 6 7 > >>   ∑:145  Sort:Date

Array References and Array Assignment Statements
This chapter provides tutorial examples and notes about array reference. Topics include assigning an array to a scalar variable; working with array references; 'Array()' function; copying arrays; Runtime error 'Type mismatch'.
2022-10-01, ∼347🔥, 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, ∼342🔥, 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, ∼342🔥, 0💬

What Is an Array?
This section provides an introduction of what is an array. VBScript supports fixed size arrays and dynamic size arrays.
2022-10-01, ∼337🔥, 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, ∼335🔥, 0💬

"Dim x()" - Dynamic-Size Array Example
This section provides a tutorial example on how to declare a dynamic-size array 'Dim x()'. 'ReDim x(n)' statement must be used on to set the size of a dynamic-size array before it can be used.
2022-10-01, ∼333🔥, 0💬

Built-in Functions
This chapter provides a list of built-in functions provided in VBScript for mathematical calculations, string management, date and time management, array management, data conversions, and other purposes.
2022-10-01, ∼333🔥, 0💬

Static, Client-Side and Server-Side Scripting Pages
This section describes differences of static content, client-side scripting code, and server-side scripting code.
2017-02-17, ∼329🔥, 1💬

Inspecting Variables Received in Procedures
This chapter provides tutorial examples and notes on inspecting variables received in procedures. Topics include why variables received must be inspected before using them, guidelines on how to inspect variables, crash-free code example to convert anything into a Long integer.
2022-10-01, ∼328🔥, 0💬

Statement Syntax and Statement Types
This chapter provides tutorial examples and notes about statements in VBScript. Topics include what is a statement, how to write a statement, commonly used statement types and examples.
2016-08-05, ∼318🔥, 1💬

"If" Statements
This section describes 4 forms of 'If' statements supported in VBScript. The more complex form is 'If ... ElseIf ... Else ... End If'.
2022-10-01, ∼317🔥, 0💬

String Data Literals
This section provides rules on writing String data literals, characters enclosed in double quotes.
2022-10-01, ∼315🔥, 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, ∼315🔥, 0💬

"^" - Arithmetic Exponentiation Operation
This section provides some detail rules and a tutorial example on how arithmetic exponentiation operation works in VBScript.
2023-06-19, ∼314🔥, 1💬

💬 2023-06-19 Naresh: Thanks for your help

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, ∼314🔥, 0💬

"For Each" Statement Example
This section provides a tutorial example on how to use a 'For Each' statement to loop through all elements in an array.
2022-10-01, ∼313🔥, 0💬

What Is a Procedure?
This section describes what is a procedure and what are the two types of procedures in VBScript.
2022-10-01, ∼312🔥, 0💬

Error Handling Rules Overview
This section describes error handling facilities supported in VBScript. Rules are provided to turn of and off the error handling flag, and to inspect 'Err' object properties.
2022-10-01, ∼312🔥, 0💬

"RegExp" Class and Object for Regular Expression Support
This section describes the 'RegExp' class and objects used for pattern matches using regular expressions. oRegExp.execute(string) returns a MatchCollection collection object.
2022-10-01, ∼312🔥, 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, ∼303🔥, 0💬

Array Data Type and Related Statements
This chapter provides tutorial examples and notes about array data type. Topics include what is an array; declaring fixed-size or dynamic-size arrays; ReDim, For ... Each, Erase statements; Variant() data type.
2022-10-01, ∼301🔥, 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, ∼301🔥, 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, ∼300🔥, 0💬

References
List of reference materials used in this book.
2022-10-01, ∼297🔥, 0💬

<< < 1 2 3 4 5 6 7 > >>   ∑:145  Sort:Date