kashmar Posted August 14, 2007 Posted August 14, 2007 Hi, i don't know if this question has been asked before but i was wondering what is the best way to declare a variable? Which is better Dim, Local or Global ? The help file doesn't offer much help about this so maybe one of the experts can help me out.
Kip Posted August 14, 2007 Posted August 14, 2007 There is no "the best" way.Dim = Local scope if the variable name doesn't already exist globally (in which case it reuses the global variable!)Global = Forces creation of the variable in the Global scopeLocal = Forces creation of the variable in the Local/Function scope MailSpons: Fake SMTP server for safe email testing Dutch postcode & address API.
kashmar Posted August 14, 2007 Author Posted August 14, 2007 There is no "the best" way.So, no difference not even in speed ??
PsaltyDS Posted August 14, 2007 Posted August 14, 2007 Hi, i don't know if this question has been asked before but i was wondering what is the best way to declare a variable? Which is better Dim, Local or Global ? The help file doesn't offer much help about this so maybe one of the experts can help me out.As a general rule (which has a few exceptions to 'prove' it) declare Global outside of Func/EndFunc and Local inside them. Valuater's AutoIt 1-2-3, Class... Is now in Session!For those who want somebody to write the script for them: RentACoder"Any technology distinguishable from magic is insufficiently advanced." -- Geek's corollary to Clarke's law
kashmar Posted August 14, 2007 Author Posted August 14, 2007 As a general rule (which has a few exceptions to 'prove' it) declare Global outside of Func/EndFunc and Local inside them. Thanks i was looking for this kind of tips and tricks that you don't normally learn from books
Kip Posted August 14, 2007 Posted August 14, 2007 So, no difference not even in speed ??nope MailSpons: Fake SMTP server for safe email testing Dutch postcode & address API.
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