Ron Augustine <RonAug@xxxxxxxx> suggests:
>There's probably a much cleaner way to do this, but this should work:
>
>If (MP[1]=1 and MP= -1) OR (MP[1]=1 and MP=0) OR (MP[1]= -1 and MP=1) OR
>(MP[1]= -1 and MP=0) then...
How about:
if MP[1] <> 0 and MP[1] <> MP then...
Jim
|