On 1/11/10 6:27 PM, Antonio Reale wrote:
Sorry for the question. The problem was in my head. I don't need the OR operator, but an AND operator. So the right expression is that reported in the previous email.
ok, anyhow is good to use paranthesis around locgical expression to set priority, especially with || (or), e.g.,
if( ( a || b) && (c || d) )
Cheers, Daniel