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

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, 194🔥, 1💬

"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, 193🔥, 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, 192🔥, 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, 192🔥, 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, 191🔥, 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, 190🔥, 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, 190🔥, 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, 189🔥, 0💬

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

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

References
List of reference materials used in this book.
2022-10-01, 187🔥, 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, 182🔥, 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, 180🔥, 0💬

"For ... Next" Statement Example Examples
This section provides a tutorial example on how to use 'For ... Next' statements to repeat a block of statements.
2022-10-01, 179🔥, 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, 179🔥, 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, 178🔥, 0💬

"-" - Arithmetic Subtraction Operation
This section provides some detail rules and a tutorial example on how arithmetic subtraction operation works in VBScript.
2022-10-01, 177🔥, 0💬

What Is an Expression?
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, 176🔥, 0💬

"If" Statement Examples
This section provides a tutorial example on how to use different types of 'If' statements to control code executions.
2022-10-01, 176🔥, 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, 176🔥, 0💬

Example - Passing Arguments by Reference
This section provides a tutorial example on how to pass arguments by reference to swap values passed through procedure arguments.
2022-10-01, 174🔥, 0💬

Built-in Date and Time Functions
This section provides a list of commonly used built-in date and time functions.
2022-10-01, 174🔥, 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, 174🔥, 0💬

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