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

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

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

VBScript and Supporting Environments
This section provides a list environments that support VBScript.
2022-10-01, ∼338🔥, 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, ∼337🔥, 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, ∼335🔥, 0💬

GetInteger() - Crash-Free Integer Conversion
This section provides a tutorial example of writing a crash-free code logic to convert a user entered string into a Long integer value. The built-in function CLng() will crash with a string like '3.3e200'.
2022-10-01, ∼333🔥, 0💬

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

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

"FileSystemObject" Objects to Manage File Systems
This section describes FileSystemObject properties and methods. A tutorial example is provided on how to create a folder, copy files, and get file information.
2022-10-01, ∼330🔥, 0💬

Interacting with External Applications - ActiveX Data Object (ADO)
This section provides a tutorial example on how to pass values from one page to another. This example is a very simple registration application with two ASP pages.
2022-10-01, ∼330🔥, 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, ∼328🔥, 0💬

Example - Passing Arguments by Value
This section provides a tutorial example on how to pass arguments by value to swap values passed through procedure arguments. By this example will not work.
2022-10-01, ∼327🔥, 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, ∼326🔥, 0💬

"Function" Statement and Function Call
This section describes how to define and invoke a function procedure. Assigning a value to the procedure name in the function procedure sets the return value.
2022-10-01, ∼325🔥, 0💬

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

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, ∼323🔥, 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, ∼322🔥, 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, ∼322🔥, 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, ∼315🔥, 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, ∼310🔥, 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, ∼310🔥, 0💬

Example - Variable Scope in Procedures
This section provides a tutorial example on validating scope of global variables in the main code and local variables in procedures.
2022-10-01, ∼308🔥, 0💬

What is ASP (Active Server Pages)?
This section describes the ASP (Active Server Pages) technology that allows you to write VBScript code inside HTML documents for the Web server, IIS, to execute. The VBScript code can provide dynamic contents into the final HTML document to be delivered to the client machine.
2022-10-01, ∼304🔥, 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, ∼287🔥, 0💬

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