2020年11月4日
摘要: 网上看到很多人问delphi中如何调试 DLL 的,众大侠回答也基本一致,但是,我使用时却时灵时不灵,今天发现了原因。 完整的调试 DLL方法如下: 1)新建一个 DLL 工程,名字就叫 MyDll 吧,编译后生成 MyDll.dll,我们要调试的就是它了。 2)新建一个用来调试 MyDll 的 A 阅读全文
posted @ 2020-11-04 20:16 sunylat 阅读(492) 评论(0) 推荐(0) 编辑
摘要: delphi TStringList 用法详解 //TStringList 常用方法与属性 :var List: TStringList; i: Integer;begin List := TStringList.Create; List.Add('Strings1'); {添加} List.Add 阅读全文
posted @ 2020-11-04 15:00 sunylat 阅读(776) 评论(0) 推荐(0) 编辑