Jump to content

for element in 2D array


tbaror
 Share

Recommended Posts

Hello,

i am trying to use For in loop with 2D array using this code below but gets error

please advice for right syntax

Thanks

$R = 0 
    
    
 For $iElment In $containair2 [$R] [9]
     
    ;MsgBox(0,"array value",$iElment)

Next
Link to comment
Share on other sites

Could be something like this but it all depends on what the array looks like.

For $i = 0 to Ubound($container, 1) -1
    For $i1 = 0 to Ubound($container, 2) - 1
        MsgBox(0,"",$container[$i][$i1])
    Next
Next
Or just this, if he really only wants [$R][9]:
For $R = 0 To Ubound($containair2) - 1
     $iElement = $containair2[$R][9]
     MsgBox(0,"Array Value:  $containair2[" & $R & "][9]", $iElment)
Next

:mellow:

Valuater's AutoIt 1-2-3, Class... Is now in Session!For those who want somebody to write the script for them: RentACoder"Any technology distinguishable from magic is insufficiently advanced." -- Geek's corollary to Clarke's law
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...