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

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

Passing Arguments to Procedures
This section describes rules on how arguments can be passed from the calling code into the called procedure by reference (the default) or by value.
2022-10-01, ∼276🔥, 0💬

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

Examples of Expressions
This section provides a tutorial example showing you different types of expressions.
2020-06-20, ∼272🔥, 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)

Built-in Date and Time Functions
This section provides a list of commonly used built-in date and time functions.
2022-10-01, ∼266🔥, 0💬

Expression and Order of Operation Precedence
This chapter provides tutorial examples and notes about expressions in VBScript. Topics include writing a simple expression or a complex expression, order of operation precedence, examples of expressions.
2022-10-01, ∼264🔥, 0💬

Function Procedure Example
This section provides a tutorial example on how to define and invoke a function procedure that calculates the temperature value in Celsius from Fahrenheit.
2022-10-01, ∼263🔥, 0💬

Precedences of Operations
This section provides the order of precedence for operations commonly used in VBScript. Operations in a complex expression must be evaluated according to the order of operation precedence.
2022-10-01, ∼262🔥, 0💬

"+" - Arithmetic Addition Operation
This section provides some detail rules and a tutorial example on how arithmetic addition operation works in VBScript.
2022-10-01, ∼261🔥, 0💬

"*" - Arithmetic Multiplication Operation
This section provides some detail rules and a tutorial example on how arithmetic multiplication operation works in VBScript.
2022-10-01, ∼261🔥, 0💬

Numeric Comparison Operations and Logical Operations
This chapter provides tutorial examples and notes about VBScript numeric comparison operations and logical operations. Topics include Equal to, Not equal to, Greater than, Less than, Greater than or equal to, Less than or equal to; Conjunction (Add), Disjunction (Or), Negation (Not), Exclusion (Xor)...
2022-10-01, ∼260🔥, 0💬

Introduction to Numeric Comparison Operations
This section provides a quick introduction of numeric comparison operations supported by VBScript: Equal to, Not equal to, Greater than, Less than, Greater than or equal to, Less than or equal to.
2022-10-01, ∼256🔥, 0💬

Assigning an Array to a Scalar Variable
This section provides a tutorial example on how to assign an array to a scalar variable. Actually, a copy of the original array is created and the reference of the copy if assigned the scalar variable.
2022-10-01, ∼256🔥, 0💬

GetVarInfo() - Variable Inspection Example
This section provides a tutorial example of writing a code, GetVarInfo(), to print out data type information of a given variable.
2022-10-01, ∼253🔥, 0💬

Object Methods - "Public" Procedures
This section provides a tutorial example on how to use 'Public Function/Sub' to define public methods. If a method is defined as the 'Default', it can be invoked by the object variable name without method name.
2022-10-01, ∼253🔥, 0💬

Data Literal Examples
This section provides a tutorial example on how to write data literals for different subtypes of Integer, Long, Double, String, Boolean, Date, Empty and Null.
2022-10-01, ∼252🔥, 0💬

"Select Case" Statements
This section describes how 'Select Case' statements work. If one of the expected value in a case clause equals to the test value, the statement block in that case clause will be executed.
2022-10-01, ∼251🔥, 0💬

"File" Objects Representing Files
This section describes File object and its properties and methods. A tutorial example is provided on how to list all properties of a file.
2022-10-01, ∼250🔥, 0💬

"Drive" Objects Representing Disk Drives
This section describes Drive object properties. A tutorial example is provided on how to list all drives and their properties on the local machine.
2022-10-01, ∼248🔥, 0💬

"\" - Arithmetic Integer Division Operation
This section provides some detail rules and a tutorial example on how arithmetic integer division operation works in VBScript.
2022-10-01, ∼246🔥, 0💬

'vbscript:' Pseudo-URL Addresses
This section describes what is a 'vbscript:' pseudo-URL address and provides several interesting examples of 'vbscript:' URLs.
2022-10-01, ∼246🔥, 0💬

Built-in Math Functions
This section provides a list of commonly used built-in math functions.
2022-10-01, ∼245🔥, 0💬

"TextStream" Objects Representing File Input and Output
This section describes TextStream object and its properties and methods. A tutorial example is provided on how to open a new file, write some text lines, and read them back.
2022-10-01, ∼244🔥, 0💬

DOM API - The "window" Object
This section provides a quick description of the 'window' object of the DOM API. A tutorial example is provided on changing browser window size through the 'window' object.
2022-10-01, ∼244🔥, 0💬

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