dcop Posted August 10, 2006 Posted August 10, 2006 I noticed the following will end up with -1 instead of 9 result using the beta. Maybe this is good but why is this? Dim $i = 10 Dim $i - $i - 1
GaryFrost Posted August 10, 2006 Posted August 10, 2006 it's def not the way to do it, you wipe out the 1st declaration of $i = 10 with the dim Dim $i = 10 $i -= 1 MsgBox(0,"$i", $i) SciTE for AutoItDirections for Submitting Standard UDFs Don't argue with an idiot; people watching may not be able to tell the difference.
dcop Posted August 10, 2006 Author Posted August 10, 2006 it's def not the way to do it, you wipe out the 1st declaration of $i = 10 with the dim Dim $i = 10 $i -= 1 MsgBox(0,"$i", $i) Thanx for the fast response GA.
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