
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 …
Comparison Operators in VBScript - Online Tutorials Library
Example Try the following example to understand all the Comparison operators available in VBScript:
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
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 …
VBScript - Strings - Online Tutorials Library
There are predefined VBScript String functions, which help the developers to work with the strings very effectively. Below are String methods that are supported in VBScript.
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.
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 …
VBScript Dictionary Objects - Online Tutorials Library
Example <!DOCTYPE html> <html> <body> <script language = "vbscript" type = "text/vbscript"> Dim obj_datadict ' Create a variable. Set obj_datadict = CreateObject ("Scripting.Dictionary") …
VBScript Logical Operators - Online Tutorials Library
Example Try the following example to understand all the Logical operators available in VBScript −
VBScript Procedures - Online Tutorials Library
Learn about procedures in VBScript, including how to create and use functions and subroutines effectively.