Jump to content

Recommended Posts

Posted

No need for two loops. One would be suffice.

UDF List:

  Reveal hidden contents

Updated: 22/04/2018

Posted

Also you could do this:

local $ary[2] = ["1stparam","2ndparam"]

_CallAry(wordf,$ary)

Func _CallAry($func,$ary)
$func($ary[0],$ary[1])
EndFunc

func wordf($param1,$param2)
msgbox("","Showing parameters",$param1 &"-" &$param2)
endfunc

even my understanding told me don't do that. LOL

 

Saludos

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
  • Recently Browsing   0 members

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