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

"Set oRegExp = New RegExp" - Creating RegExp Objects
This section describes steps on how to create a new RegExp object with a Set statement 'Set oRegExp = New RegExp'. oRegExp.Global and oRegExp.IgnoreCase used to set pattern match options.
2022-10-01, ∼462🔥, 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, ∼460🔥, 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, ∼448🔥, 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, ∼427🔥, 0💬

Built-in "Err" Object Properties and Methods
This section describes the built-in 'Err' object, and its properties and methods, Err.Number, Err.Description, Err.Source, Err.Raise(), Err.Clear().
2025-05-29, ∼425🔥, 1💬

"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, ∼421🔥, 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, ∼400🔥, 0💬

About This Book
This section provides some detailed information about this book - VBScript Tutorials - Herong's Tutorial Examples.
2022-10-01, ∼396🔥, 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, ∼391🔥, 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, ∼378🔥, 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, ∼365🔥, 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, ∼364🔥, 0💬

String Operations - Concatenation and Comparison
This chapter provides tutorial examples and notes about VBScript string operations. Topics include string concatenation operation which joins two String values together, string comparison operations which compare one character at a time based its ASCII value.
2022-10-01, ∼362🔥, 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, ∼361🔥, 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, ∼346🔥, 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, ∼343🔥, 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, ∼340🔥, 0💬

IIS ASP Server Supporting VBScript
This chapter provides introductions and tutorial examples on how IIS ASP server provides support to VBScript code embedded in HTML documents. Topics include configuring IIS to support ASP pages; ASP runtime 'request', 'response' and 'session' objects; ADO library supporting database server connectio...
2016-05-25, ∼340🔥, 1💬

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

"Sub" Statement and Subroutine Call
This section describes how to define and invoke a subroutine procedure. There is no way to specify a return value in a subroutine procedure.
2022-10-01, ∼336🔥, 0💬

IE Web Browser Supporting VBScript
This chapter provides introductions and tutorial examples on how IE Web browser provides support to VBScript code embedded in HTML documents. Topics include executing VBScript code embedded in 'script' tags, including VBScript code through external files, DOM API 'document' and 'window' objects, bro...
2022-10-01, ∼334🔥, 0💬

String Concatenation Operation
This section provides a quick introduction of string concatenation operation, which joins the second string to the end of the first string.
2022-10-01, ∼330🔥, 0💬

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

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