yeto Posted July 3, 2019 Posted July 3, 2019 MsgBox($MB_SYSTEMMODAL, "", "The value of $i is: " & $i) ; Display the value of $i. $i = $i + 1 ; Or $i += 1 can be used as well. I also Googled and cannot find out what it means. yeto
Subz Posted July 3, 2019 Posted July 3, 2019 (edited) Its just a variable, usually indicates a integer variable Edited July 3, 2019 by Subz
Werty Posted July 3, 2019 Posted July 3, 2019 $h = Handle, $p = Pointer Some guy's script + some other guy's script = my script!
Subz Posted July 3, 2019 Posted July 3, 2019 Just to be clear $i is not required you can replace it for example: $index, $x, $y, $z etc.. However it's usually best practice to define your variables (see https://www.autoitscript.com/wiki/Best_coding_practices for more information).
yeto Posted July 4, 2019 Author Posted July 4, 2019 3 hours ago, Subz said: Its just a variable, usually indicates a integer variable Thank you. That is very helpful. Also, thank you for providing the link below. I am studying that now. Still learning, yeto
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