delphi7开发的串口调试助手

上传:lknscav 浏览: 17 推荐: 0 文件:RAR 大小:305.5KB 上传时间:2020-09-20 08:44:32 版权申诉
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
上传资源
用户评论

qqplumbing16193 2020-09-20 08:44:33

很有用,但是好像少个库