delphi7开发的串口调试助手

lknscav 17 0 RAR 2020-09-20 08:09: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

用户评论
请输入评论内容
评分:
Generic placeholder image 卡了网匿名网友 2020-09-20 08:09:33

很有用,但是好像少个库