XOR
Returns True if only one of bExp1 and bExp2 is False
Example:
  If a XOR b Then
Now:
  If Not a And b Or a And Not b Then

Simplified:
 If Not (a = b) Then

XNOR
Returns True if both bExp1 AND bExp2 are True or False
Example:
  If a Xnor b Then
Now:
  If a And b Or Not a And Not b Then

Simplified:
 If a = b Then

lj
_______________________________________________
Unsubscribe or switch delivery mode:
<http://www.realsoftware.com/support/listmanager/>

Search the archives of this list here:
<http://support.realsoftware.com/listarchives/lists.html>

Reply via email to