Deye Posted June 30, 2021 Posted June 30, 2021 What will do it ? Thanks #include <Array.au3> Local $arr[1][3] $arr[0][2] = 9 $arr[0][1] = "/" ;operator $arr[0][0] = 3 _ArrayDisplay($arr) MsgBox("", "", $arr[0][2] & $arr[0][1] & $arr[0][0]) MsgBox("", "", $arr[0][2] & Execute($arr[0][1]) & $arr[0][0])
Developers Solution Jos Posted June 30, 2021 Developers Solution Posted June 30, 2021 (edited) 5 minutes ago, Deye said: What will do it ? Concatenate ?? ... so what is really the question here? .. or is this what you were trying to do: MsgBox("", "", Execute($arr[0][2] & $arr[0][1]) & $arr[0][0]) Edited June 30, 2021 by Jos SciTE4AutoIt3 Full installer Download page - Beta files Read before posting How to post scriptsource Forum etiquette Forum Rules Live for the present, Dream of the future, Learn from the past.
Deye Posted June 30, 2021 Author Posted June 30, 2021 was sure i tried that ^^ , And again got ahead of myself , Sorry
JockoDundee Posted June 30, 2021 Posted June 30, 2021 A one dimensional array in two dimensional clothing ? Local $arr[1][3] Code hard, but don’t hard code...
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now