C4ToI Method
Class: _DBC
Expand/Collapse source code of procedure C4ToI Source Code
      LPARAMETERS lcInt
      * lcInt - Binary format of integer
      RETURN ASC(LEFT(lcInt,1))+;
             ASC(SUBS(lcInt,2,1))*256+;
             ASC(SUBS(lcInt,3,1))*65536+;
             ASC(RIGHT(lcInt,1))*16777216