About 1,070 results
Open links in new tab
  1. VBScript - Arrays - Online Tutorials Library

    There are various inbuilt functions within VBScript which help the developers to handle arrays effectively. All the methods that are used in conjunction with arrays are listed below.

  2. VBScript Array Function - W3Schools

    The Array function returns a variant containing an array. Note: The position of the first element in an array is zero. Required. A list (separated by commas) of values that is the elements in the array.

  3. VBScript Arrays: Using DIM, REDIM, Split, and Ubound Array Functions

    Apr 1, 2025 · This tutorial gives you a wide knowledge of Arrays, their types, their declaration in VBScript, etc., with simple practical examples for your easy understanding.

  4. VBScript Array Functions - Comprehensive Guide - ZetCode

    Apr 4, 2025 · Learn about VBScript array functions, including Array, UBound, LBound, Split, and more. Understand how to manipulate arrays effectively with practical examples.

  5. Array - VBScript - SS64.com

    Dim - Declare a new variable or array variable. Filter - Produce an array by filtering an existing array.

  6. Understanding VBScript: Arrays - ITPro Today

    Jun 30, 1999 · This sidebar provides an example of using VBScript arrays in a script and discusses why you might encounter problems if you use both VBScript and JScript arrays in a script.

  7. VBScript Arrays - Quackit Tutorials

    A VBScript array is a special type of variable that allows you to store multiple values against a single variable. For example, say you have a shopping list that you want to store and write out to the screen.

  8. Arrays VBScript | Automation Testing QTP/UFT | VBScript Tutorial

    Jun 11, 2025 · Here in this post we see Arrays VBScript - Static Array, Dynamic Array. Array is a collection of data with different types of data type.

  9. Arrays and Loops in VBScript - Herong's Tutorial Examples

    This section provides tutorial examples on how to use arrays and loops in VBScript language.

  10. VBScript Scripting Techniques: Arrays - Rob van der Woude

    Oct 16, 2025 · List the contents of an array on screen. Subroutine to reverse the order of array elements. Dim i, j, idxLast, idxHalf, strHolder. idxLast = UBound( myArray ) idxHalf = Int( idxLast / 2 ) …