Is there an elegant way to code this:
Code:
LOCAL a,b,c AS LONG ' for example IF a OR b OR c THEN ' If one is present then IF a AND b AND c THEN ' all must be present ' Want the Else ELSE MissingFlag = 1 ' Error, one or more is missing END IF END IF
Comment