2013-04-16, 05:27 PM
Yugidude Wrote:EDIT: just saw your Indentation mock-up of my code. You said that the 2nd "End If" is refering to code before the "For" Loop and that that was bad.. That is what I want. I only want the "For" Loop to execute if "InQuotes = False". Is thier a better way to do this?
If you only want the FOR to execute if the condition is true, you code it thus:
Code:
IF (condition) THEN
FOR counter ...
....
NEXT counter
END IF
