Quote Originally Posted by DJEE View Post
can a While statement only have one condition or can it have more than one condition?

example

While A = 1 AND B < 10
B = B + 1
Wend
The manual says 'Condition may be any comparison expression.'. So, while it doesn't specifically say that you can, it doesn't specifically say that you can't...use multiple expression's....or even nested While/Wend statements.
I think I'd still put the comparison inside parenthesis to avoid confusing the compiler.