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

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, 336🔥, 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, 329🔥, 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, 312🔥, 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, 300🔥, 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, 290🔥, 0💬

About This Book
This section provides some detailed information about this book - __title__.
2022-10-01, 275🔥, 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, 273🔥, 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, 272🔥, 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, 271🔥, 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, 265🔥, 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, 260🔥, 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().
2022-10-01, 254🔥, 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, 247🔥, 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, 246🔥, 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, 238🔥, 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, 236🔥, 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, 231🔥, 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, 229🔥, 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, 226🔥, 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, 224🔥, 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, 224🔥, 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, 218🔥, 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, 211🔥, 0💬

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

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