Code: Select all
Let>serverOneAccess=True
Code: Select all
If>{(%serverOneAccess%<>"Y")OR(%serverOneAccess%<>"True")}
Do Stuff...
exit
endif
do other stuff...
exit
Code: Select all
If>{(%serverOneAccess%="Y")OR(%serverOneAccess%="True")}
Goto>do other stuff
else>
Do Stuff...
exit
endif
do other stuff...
exit
Code: Select all
If>{(%serverOneAccess%<>"Y")OR(%serverOneAccess%<>"True")OR(%serverTwoAccess%<>"Y")OR(%serverTwoAccess%<>"True")} ...etc
Do Stuff...
exit
endif
do other stuff...
exit
*edit1 spelling and improved explanation