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

"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, 757🔥, 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.....:)

Creating a Copy of an Array
This section provides a tutorial example on how to create a copy of an array quickly with the array assignment statement.
2022-10-01, 752🔥, 0💬

"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, 708🔥, 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, 687🔥, 0💬

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

WSH (Windows Script Host)
This chapter provides tutorial examples and notes on WSH (Windows Script Host). Topics include running WSH commands, cscript and wscript, with options; summary of WSH runtime objects; using StdIn and StdOut for input and output; running system commands with script code; defining script jobs in a WSF...
2022-10-01, 604🔥, 0💬

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, 581🔥, 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, 564🔥, 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...

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

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, 485🔥, 0💬

"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, 438🔥, 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, 410🔥, 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, 406🔥, 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, 402🔥, 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, 401🔥, 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, 388🔥, 0💬

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, 384🔥, 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, 384🔥, 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, 380🔥, 0💬

"Set oRegExp = New RegExp" - Creating RegExp Objects
This section describes steps on how to create a new RegExp object with a Set statement 'Set oRegExp = New RegExp'. oRegExp.Global and oRegExp.IgnoreCase used to set pattern match options.
2022-10-01, 372🔥, 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, 352🔥, 1💬

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

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, 342🔥, 0💬

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