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

"*" - Arithmetic Multiplication Operation
This section provides some detail rules and a tutorial example on how arithmetic multiplication operation works in VBScript.
2022-10-01, 173🔥, 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, 173🔥, 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, 173🔥, 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, 172🔥, 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, 172🔥, 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, 171🔥, 0💬

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

Built-in Misc. Functions
This section provides a list of commonly used built-in misc. functions.
2022-10-01, 170🔥, 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, 170🔥, 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, 170🔥, 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, 170🔥, 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, 168🔥, 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, 167🔥, 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, 166🔥, 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, 165🔥, 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, 164🔥, 0💬

Built-in Conversion Functions
This section provides a list of commonly used built-in conversion functions.
2022-10-01, 164🔥, 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, 162🔥, 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, 161🔥, 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, 157🔥, 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, 157🔥, 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, 155🔥, 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, 152🔥, 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, 152🔥, 0💬

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