IF command use logical operators....
Posted: 08 Mar 2011 13:40
Hy
I've two conditions cond1 and cond2 , if both conditions are true do command1 if someone is false do command2.
is any chance to introduce these two conditions in "if" command using logical operators
for now use this solution, but seems too long .....
if cond1 (
if cond2 (
command1) else (
command2)
) else command2
I've two conditions cond1 and cond2 , if both conditions are true do command1 if someone is false do command2.
is any chance to introduce these two conditions in "if" command using logical operators
for now use this solution, but seems too long .....
if cond1 (
if cond2 (
command1) else (
command2)
) else command2