h3.prg
上传用户:caigouii
上传日期:2020-04-16
资源大小:8k
文件大小:0k
源码类别:

其他数据库

开发平台:

VFP

  1. LPARAMETERS lnNum,i
  2. LOCAL  ntmp, cRes
  3. * Returns a 4 byte string representing the number
  4. cRes = ""
  5. FOR i = 3 TO 0 STEP -1
  6. ntmp = INT(lnNum / 256 ^ i)
  7. lnNum = lnNum - ntmp * (256 ^ i)
  8. cRes = CHR(ntmp) + cRes
  9. ENDFOR
  10. RETURN cRes