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

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, 341🔥, 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, 341🔥, 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, 315🔥, 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, 301🔥, 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, 292🔥, 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, 276🔥, 0💬

About This Book
This section provides some detailed information about this book - __title__.
2022-10-01, 275🔥, 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, 273🔥, 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, 272🔥, 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, 262🔥, 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, 258🔥, 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, 254🔥, 1💬

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, 249🔥, 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, 248🔥, 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, 240🔥, 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💬

Examples of Expressions
This section provides a tutorial example showing you different types of expressions.
2020-06-20, 237🔥, 2💬

💬 2020-06-20 Herong: Ekko, Thanks for the interesting example. So the statement, "Operations of the same precedence value must be evaluated from left...

💬 2020-06-17 Ekko: There is another special precedence: Dim b, c, d b = c = d will be interpreted like b = (c = d)

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, 235🔥, 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, 232🔥, 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, 230🔥, 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, 228🔥, 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, 225🔥, 0💬

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