<< < 1 2 3 4 5 6 > >>   Sort: Rank

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, 132👍, 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, 130👍, 0💬

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

"New" Operator and "Nothing" Object
This section provides a tutorial example on how to define the Class_Initialize procedure to be called by the 'New' operator, and the Class_Terminate procedure to be called when the object lost its last reference.
2022-10-01, 130👍, 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, 129👍, 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, 129👍, 0💬

"^" - Arithmetic Exponentiation Operation
This section provides some detail rules and a tutorial example on how arithmetic exponentiation operation works in VBScript.
2022-10-01, 128👍, 0💬

"For Each" Statement Example
This section provides a tutorial example on how to use a 'For Each' statement to loop through all elements in an array.
2022-10-01, 128👍, 0💬

Built-in Conversion Functions
This section provides a list of commonly used built-in conversion functions.
2022-10-01, 128👍, 0💬

What Is an Array?
This section provides an introduction of what is an array. VBScript supports fixed size arrays and dynamic size arrays.
2022-10-01, 127👍, 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, 127👍, 0💬

"New", "Set", "Is", ".", "Nothing" - Object Operations
This section provides a tutorial example on how to use object operations, 'New', 'Set', 'Is', '.' and 'Nothing'. The default method of an object can be invoked without method name.
2022-10-01, 127👍, 0💬

Assigning Values to Variables - "=" Statement
This section provides a quick introduction of the assignment statement, which allows you to assign a new value to a variable.
2022-10-01, 126👍, 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, 126👍, 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, 126👍, 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, 125👍, 0💬

Variable Scope in Procedures
This section describes rules on scope of global variables defined in the main code and local variables defined in procedures.
2022-10-01, 125👍, 0💬

Built-in Array Functions
This section provides a list of commonly used built-in array functions.
2022-10-01, 125👍, 0💬

Built-in Misc. Functions
This section provides a list of commonly used built-in misc. functions.
2022-10-01, 124👍, 0💬

"Class" Statement - Defining Your Own Class
This section provides a tutorial example on how to create a class and instantiate a new object. The TypeName() function returns the class name of the specified object.
2022-10-01, 124👍, 0💬

"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, 123👍, 0💬

"While" Statement Examples
This section provides a tutorial example on how to use 'while' statements to repeat a block of statements.
2022-10-01, 123👍, 0💬

"Do ... Loop" Statements
This section describes how 'Do ... Loop' statements work in VBScript. A block of statements is repeated based on the specified condition.
2022-10-01, 123👍, 0💬

"Folder" Objects Representing File Folders
This section describes Folder object and its properties and methods. A tutorial example is provided on how to list all properties of a file folder.
2022-10-01, 123👍, 0💬

<< < 1 2 3 4 5 6 > >>   Sort: Rank