Jump to content

I need to trap an array error when element is missing


Recommended Posts

I use a single dimension array to capture user input in an edit box, I use StringSplit($ChatBox1, ' ', 1) triggering on a space ' ' to as the delimiter.

Sometimes there will not be an element 3, array[3] and I need some way of capturing this error allowing the script to move on.

IF array[3] <doesn't exist expression> then array[3] = "parameter is missing...try again"

I need help with coding the <doesn't exist expression>

Link to comment
Share on other sites

I use a single dimension array to capture user input in an edit box, I use StringSplit($ChatBox1, ' ', 1) triggering on a space ' ' to as the delimiter.

Sometimes there will not be an element 3, array[3] and I need some way of capturing this error allowing the script to move on.

IF array[3] <doesn't exist expression> then array[3] = "parameter is missing...try again"

I need help with coding the <doesn't exist expression>

Perhaps the @error macros may help. You can check to see if an error occurs and have it output what you want.
[font="Comic Sans MS"]BA-LA[/font]http://ba-la.110mb.comJoin my community, CLICK HEREAlternative links to my site:http://www.ba-la.tkhttp://www.ba-la.co.nrContact me if you would like to help with some of my projects: joeythepirate@gmail.com
Link to comment
Share on other sites

Or, say you have several arrays, and for each array you must do something to it, then you would do something like this:

For $i = 1 To Ubound($array)-1
    ;whatever you want to do to each array
    ;$array[$i] = each array
Next

Just thought it would be useful for you to know.

Kurt

Awaiting Diablo III..

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...