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

Introduction of Arithmetic Operations
This section provides a quick introduction of arithmetic operations supported by VBScript: addition, subtraction, multiplication, division, remainder, and exponentiation.
2016-03-20, ∼887🔥, 2💬

💬 2016-03-20 Herong: Hi Saranyakumar, if you want to run VBScript code as standalone application, you can use WSH (Windows Script Host), which will a...

💬 2016-03-18 saranyakumar: the above example is OK but we need to get a input at runtime but it is useful......

"Variant" - Data Type and Subtypes
This section provides a quick introduction of VBScript data type, Variant, a list of subtypes: byte, integer, long, single, double, currency, string, Boolean, date, object, error, empty, and null.
2022-10-01, ∼875🔥, 0💬

Data Type "Variant()" - Array of Variant Values
This section describes the array data type, Variant(). A tutorial example is provided to show how TypeName() and VarType() functions work on array values.
2022-10-01, ∼852🔥, 0💬

"For ... Next" Statements
This section describes how 'For ... Next' statements work in VBScript. A block of statements is repeated until a loop variable reaches its final value.
2016-02-01, ∼844🔥, 3💬

💬 2016-01-27 Herong: Bushra, Try for the following ☺ For Each c In "ABCDEFGHIJKLMNOPQRSTUVWXYZ".ToCharA rray()... Next

💬 2016-01-25 bushra: also give me their plss...as possible as early

💬 2016-01-25 bushra: please also give the exmples for alphabets for the help of for next statement.....:)

Built-in String Functions
This section provides a list of commonly used built-in string functions.
2015-10-01, ∼833🔥, 1💬

💬 2015-10-01 Kalu khan: Very nice

"Dictionary" Objects to Store Keys and Values
This section describes Dictionary object properties and methods. A tutorial example is provided on how to add and remove keys and values into a Dictionary object.
2022-11-15, ∼754🔥, 1💬

"On Error Resume Next" - Turning on Error Handling
This section provides a tutorial example on how to use the 'On Error Resume Next' statement to turn on error handling flag. You can use Err.Number &gt; 0 to test if there is any runtime error has been raised or not.
2022-10-01, ∼735🔥, 0💬

String Comparison Operation
This section provides a quick introduction of string comparison operations, which compare one character at a time based its ASCII value.
2016-03-03, ∼715🔥, 1💬

"Err.Number" and "Err.Clear()" - Error Code and Clear Method
This section provides a tutorial example on how to manage runtime errors properly with the error code, Err.Number, and the error clear method, Err.Clear().
2016-06-29, ∼688🔥, 1💬

ASP Object Example - Passing Values between Pages
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, ∼666🔥, 0💬

Introduction to Logical Operations
This section provides a quick introduction of logical operations supported by VBScript: logical negation - Not, conjunction - And, disjunction - Or, exclusion - Xor, equivalence - Eqv, implication - Imp.
2017-03-18, ∼650🔥, 2💬

💬 2017-03-18 Herong: Amit, Thanks. It's been corrected now.

💬 2017-03-17 Amit Kumar Rout: Logical Conjunction (Add): Resulting (True) if and only if both operands are (True). Correction: Logical Conjunction (And): Resu...

Using VBScript with Internet Explorer 10 or Older
This section provides tutorial example on how to embed a VBScript code in a HTML document to be executed by Internet Explorer 10 or older on the local machine.
2022-10-01, ∼612🔥, 0💬

"Erase" Statement - Removing All Elements in an Array
This section provides a tutorial example on how to use a 'Erase' statement to reset all elements to the default value in a fixed-size array, or truncate the size of a dynamic-size array to zero.
2022-10-01, ∼572🔥, 0💬

"cscript.exe/wscript.exe" Command Version and Options
This section describes how to start 'cscript' or 'wscript' command and what options are available.
2022-10-01, ∼544🔥, 0💬

"x(i)" - Accessing Array Elements with Indexes
This section describes how to access array elements for assigning new values and retrieving existing values. 'For Each' statement can also be used to loop through all elements in an array.
2022-10-01, ∼538🔥, 0💬

"Dim x()" - Declaring Array Variables
This section provides an introduction and examples on how to declare array variables with fixed sizes or dynamic sizes.
2022-10-01, ∼533🔥, 0💬

What is WSH (Windows Script Host)?
This section describes WSH (Windows Script Host) and its features. WSH is a Windows system administration tool to run VBScript code to common administrative tasks.
2022-10-01, ∼519🔥, 0💬

"Type mismatch" Runtime Error - Assignments to Array Variables
This section describes how values from scalar array variables can be assigned to other scalar or array variables. Runtime error 'Type mismatch' happens when you try to assign scalar values or arrays to array variables.
2022-10-01, ∼515🔥, 0💬

Creating Your Own Classes
This chapter provides tutorial examples and notes on classes and objects. Topics include defining a new class, instantiating a new object, assigning object reference, initializing and terminating an object, defining properties with 'Public' statements and 'Property' procedures, defining methods with...
2022-10-01, ∼505🔥, 0💬

Introduction of VBScript - Visual Basic Scripting Edition
This chapter provides a quick introduction on VBScript language. Topics include what is VBScript; what are VBScript host environments; running VBScript code within Internet Explorer (IE), Internet Information Services (IIS), and Windows Script Host (WSH).
2015-09-20, ∼499🔥, 1💬

Date and Time Data Literals
This section provides rules on writing date and time literals, characters enclosed in hash signs. VBScript support several formats for the date string like ISO format and US format.
2022-10-01, ∼488🔥, 0💬

DOM API - The "document" Object
This section provides a quick description of the 'document' object of the DOM API. A tutorial example is provided on building a simple HTML document with the 'document' object.
2022-10-01, ∼488🔥, 0💬

Empty - The Default Value of a Variable
This section provides a tutorial example on how to find out the default value, Empty, of a variable before its first assignment.
2022-10-01, ∼485🔥, 0💬

"WScript" Runtime Object Hierarchy
This section describes WSH runtime objects: WScript and its properties. A tutorial example is provided on how to use WScript.StdIn and WScript.StdOut.
2023-02-02, ∼475🔥, 1💬

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