
VBScript Tutorial - Online Tutorials Library
Microsoft VBScript (Visual Basic Script) is a general-purpose, lightweight and active scripting language developed by Microsoft that is modeled on Visual Basic. Nowadays, VBScript is the primary scripting language for Quick Test Professional (QTP), which is a test automation tool.
VBScript - Quick Guide - Online Tutorials Library
VBScript - Quick Guide - VBScript stands for Visual Basic Scripting that forms a subset of Visual Basic for Applications (VBA). VBA is a product of Microsoft which is included NOT only in other Microsoft products such as MS Project and MS Office but also in …
VBScript - Overview - Online Tutorials Library
VBScript - Overview - VBScript stands for Visual Basic Scripting that forms a subset of Visual Basic for Applications (VBA). VBA is a product of Microsoft which is included NOT only in other Microsoft products such as MS Project and MS Office but also in …
VBScript - Syntax - Online Tutorials Library
VBScript is based on Microsoft's Visual Basic. Unlike JavaScript, no statement terminators such as semicolon is used to terminate a particular statement. Single Line Syntax. Colons are used when two or more lines of VBScript ought to be written in a single line. Hence, in VBScript, Colons act as a line separator.
VBScript - Procedures - Online Tutorials Library
VBScript - Procedures - A function is a group of reusable code which can be called anywhere in your program. This eliminates the need of writing same code over and over again. This will enable programmers to divide a big program into a number of small and manageable functions. Apart from inbuilt Functions, VBScript allows
VBScript is used for Client side scripting in Microsoft Internet Explorer. Microsoft Outlook Forms usually runs on VBScript; however, the application level programming relies on VBA (Outlook 2000 onwards).
VBScript - Operators - Online Tutorials Library
VBScript - Operators - Let’s take an expression 4 + 5 is equal to 9. Here, 4 and 5 are called operands and + is called the operator. VBScript language supports following types of operators ?
VBScript - Date and Time Functions - Online Tutorials Library
VBScript Date and Time Functions help the developers to convert date and time from one format to another or to express the date or time value in the format that suits a specific condition. Date Functions
VBScript - Loops - Online Tutorials Library
A loop statement allows us to execute a statement or group of statements multiple times and following is the general from of a loop statement in VBScript. VBScript provides the following types of loops to handle looping requirements.
Comparison Operators in VBScript - Online Tutorials Library
Comparison Operators in VBScript - Following table shows all the Comparison operators supported by VBScript language. Assume variable A holds 10 and variable B holds 20, then: Home