Jump to content

Help with using Arrays


Recommended Posts

Try this code:

Dim $aStrings[4]
Dim $i

$aStrings[0] = "This"
$aStrings[1] = "is an "
$aStrings[2] = "array of"
$aStrings[3] = "strings"

For $i = 0 to UBound($aStrings) - 1
    MsgBox(0, "Array of Strings", $aStrings[$i], 4)
Next
Link to comment
Share on other sites

Guest Guest_ElementCDN

Perfect! Thanks very much for your post.

I have the script working correctly now! :D

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...