随笔分类 -  Delphi

Delphi
摘要:function TForm5.is_samestr(str: string): Boolean; var total:integer; i:integer; a:string; begin total :=Length(str); Result:=true; for i := 1 to total 阅读全文
posted @ 2020-09-14 15:49 华华软件工作室 阅读(639) 评论(0) 推荐(0)
摘要:Delphi程序在运行着,有时想获取一些程序运行的值的话,可以用下面的输出日志的函数来实现 、 procedure WriteLog(sContent: string); //写入日志 var tFile: TextFile; filename: string; logDir:string; beg 阅读全文
posted @ 2020-07-06 17:10 华华软件工作室 阅读(852) 评论(1) 推荐(1)