taylansan Posted May 28, 2007 Posted May 28, 2007 here is a simple example Dim $z ;or Dim $z[3][3] For $x = 1 To 3 For $y = 1 To 3 Dim $z[$x][$y] = $x*$y ;problem is here? Next Next now i need output z as; 1 2 3 2 4 6 3 6 9 but its not. need some help. thnx TY.
GaryFrost Posted May 28, 2007 Posted May 28, 2007 here is a simple example Dim $z ;or Dim $z[3][3] For $x = 1 To 3 For $y = 1 To 3 Dim $z[$x][$y] = $x*$y ;problem is here? Next Next SciTE for AutoItDirections for Submitting Standard UDFs Don't argue with an idiot; people watching may not be able to tell the difference.
Developers Jos Posted May 28, 2007 Developers Posted May 28, 2007 (edited) Dim $z[4][4] For $x = 1 To 3 For $y = 1 To 3 $z[$x][$y] = $x * $y Next Next Edited May 28, 2007 by JdeB 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.
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