12-01-2010 04:04 AM
Hi guys,
How to use an AND expression in an IF condition?
I tried "foo1 != true AND foo2 != true" or "foo1 != true & foo2 != true". But this gives an expression error.
12-01-2010 04:21 AM
Hi,
You need to use && (similar to C/C++)
You would use AND if you what to AND two value together.
Check out the TestStand Help for more information.
12-01-2010 09:45 AM
TestStand also has parameterized version of the AND and OR operations - AllOf() and AnyOf(), respectively.