Omegis Posted November 27, 2005 Posted November 27, 2005 Hi, i have notice that when i use for within for, and in the internal for i use ExitLoop function its terminate the 2 loops, its seem to be a bug, except using ugly if, there is away to workaround ? Thanks
GaryFrost Posted November 27, 2005 Posted November 27, 2005 Hi, i have notice that when i use for within for, and in the internal for i use ExitLoop function its terminate the 2 loops, its seem to be a bug, except using ugly if, there is away to workaround ? Thanks I'm going make a guess at the problem is in your code, here's an example of the inner for loop with exitloop This works properly. For $x = 0 to 10 for $y = 0 to 10 MsgBox(0,"test","y = " & $y) If $y = 3 Then ExitLoop Next Next SciTE for AutoItDirections for Submitting Standard UDFs Don't argue with an idiot; people watching may not be able to tell the difference.
jpm Posted November 27, 2005 Posted November 27, 2005 PLease read how to fill a bug report on top of this forum. For now I move your topic in the support forum which is the best place to start first.
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