T3HP0wNz0Rrr Posted April 1, 2010 Posted April 1, 2010 Hello all, I just saw in Java that it is possible to give a variable multiple values, like: int Positions[] = {12, 44, 192, 444); So i thought: Maybe this is also possible in autoit? If you can help me please do
Yoriz Posted April 1, 2010 Posted April 1, 2010 Its possible using an array local $aPositions[4] = [12, 44, 192, 444] For $i = 0 To ubound($aPositions)-1 Step 1 MsgBox(0,$i,$aPositions[$i]) Next GDIPlusDispose - A modified version of GDIPlus that auto disposes of its own objects before shutdown of the Dll using the same function Syntax as the original.EzMySql UDF - Use MySql Databases with autoit with syntax similar to SQLite UDF.
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