About 294 results
Open links in new tab
  1. VBScript Tutorial - Online Tutorials Library

    This tutorial has been prepared for beginners to help them understand the basic-to-advanced functionality of VBScript. After completing this tutorial, you will find yourself at a moderate level …

  2. VBScript - Quick Guide - Online Tutorials Library

    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 …

  3. VBScript - Syntax - Online Tutorials Library

    VBScript ignores spaces, tabs, and newlines that appear within VBScript programs. One can use spaces, tabs, and newlines freely within the program, so you are free to format and indent your …

  4. VBScript - Overview - Online Tutorials Library

    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 …

  5. VBScript - Operators - Online Tutorials Library

    What is an operator? Lets 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 …

  6. VBScript - Procedures - Online Tutorials Library

    Apart from inbuilt Functions, VBScript allows us to write user-defined functions as well. This section will explain you how to write your own functions in VBScript.

  7. About the Tutorial l Basic. Nowadays, VBScript is the primary scripting language for Quick Test Professional (QTP), which is a test automat on tool. This tutorial will teach you how to use …

  8. Comparison Operators in VBScript - Online Tutorials Library

    Example Try the following example to understand all the Comparison operators available in VBScript:

  9. Object Oriented VBScript - Online Tutorials Library

    VBScript runtime objects help us to accomplish various tasks. This section will help you understand how to instantiate an object and work with it.

  10. VBScript For Loops - Online Tutorials Library

    <!DOCTYPE html> <html> <body> <script language = "vbscript" type = "text/vbscript"> Dim a : a = 10 For i = 0 to a Step 2 'i is the counter variable and it is incremented by 2