1. 首页
  2. 信息化
  3. 项目管理
  4. delphi7开发的串口调试助手

delphi7开发的串口调试助手

上传者: 2020-09-20 08:44:32上传 RAR文件 305.5KB 热度 18次
Function FileLenght(sFn:String):Integer; Var iFileHandle: Integer; begin {$I-} Result:=0; if not FileExists(sFn) then Exit; iFileHandle := FileOpen(sFn, fmOpenRead); try Result:=FileSeek(iFileHandle,0,2); finally FileClose(iFileHandle); end; end; procedure TFrmCommSetup.ShowTex
下载地址
用户评论
码姐姐匿名网友 2020-09-20 08:44:33

很有用,但是好像少个库