Quote Originally Posted by keithdoxey View Post
Code:
IF (ByteA<300) AND (ByteC>=ByteA) AND (ByteC+ByteD<127) then...
This is an extremely inefficient, code space consuming argument.<hr/>
Here's a better approach that will use much less code space and probably be a lot faster too.<hr/>
Code:
IF ByteA<300 THEN
   IF ByteC>=ByteA THEN
      IF (ByteC+ByteD<127 THEN
      'do something
      ENDIF
   ENDIF
ENDIF
Willing to bet this is about 20-30 bytes shorter.
<br/>