Jump to content

Pass an array to a function?


Recommended Posts

Trying to pass an array to a function, but it doesn't like function declaration. Realize the example declares it as global but I want to pass in different arrays so I don't want to specify specific array name in function.

Dim $bob[2]

$bob[0] = "Hey 1"

$bob[1] = "Hey 2"

SendArray($bob)

Func SendArray($funcArray[])

MSgbox(0, "funcArray 0 in function", $funcArray[0])

MSgbox(0, "funcArray 1 in function", $funcArray[1])

EndFunc

Link to comment
Share on other sites

Dim $bob[2]

$bob[0] = "Hey 1"
$bob[1] = "Hey 2"

SendArray($bob)


Func SendArray($funcArray)

MSgbox(0, "funcArray 0 in function", $funcArray[0])
MSgbox(0, "funcArray 1 in function", $funcArray[1])

EndFunc

It just has to work. Remember that arrays are variables too. So no need for the "[]" when passing the whole array.

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