CyberSlug 6 Posted February 11, 2004 Share Posted February 11, 2004 Global $i Local $i Global $i Dim $i Local $i Func foo() Global $i Local $i Global $i Dim $i Local $i EndFunc What is the scope of $i? More importantly, why don't I get an error message? Use Mozilla | Take a look at My Disorganized AutoIt stuff | Very very old: AutoBuilder 11 Jan 2005 prototype I need to update my sig! Link to post Share on other sites
Administrators Jon 1,250 Posted February 11, 2004 Administrators Share Posted February 11, 2004 You are just redefining i lots of times. By the end there will be a global $i and a local $i (using the Local keyword at the top level still only makes it global) Deployment Blog: https://www.autoitconsulting.com/site/blog/ SCCM SDK Programming: https://www.autoitconsulting.com/site/sccm-sdk/ Link to post Share on other sites
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