摘要:相关资料: https://jingyan.baidu.com/article/bad08e1e2ec23b09c9512148.html 实例代码: 1 unit Unit1; 2 3 interface 4 5 uses 6 Winapi.Windows, Winapi.Messages, Sy
阅读全文
摘要:相关资料: 注意:是电脑屏幕,不是手机屏幕 实例代码: 1 unit Unit10; 2 3 interface 4 5 uses 6 Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes,
阅读全文
摘要:相关资料: https://blog.csdn.net/object277910278/article/details/20669963 1.Escape方法 对String对象编码以便它们能在所有计算机上可读, escape(charString) 必选项 charstring 参数是要编码的任意
阅读全文
摘要:相关资料: http://www.voidcn.com/article/p-uwvfunpb-bwd.html https://blog.csdn.net/xieyunc/article/details/81568144 我的桌面应用程序必须从Internet下载文件.该文件的路径是已知的,文件名本
阅读全文
摘要:相关资料: http://www.it588.cn/softdev/2019-05-06/603.html 方法一: 引入单元: uses ActiveX, ComObj; 实例调用: //javascript中的escape()函数的delphi实现function Escape(s: strin
阅读全文
摘要:相关资料: https://www.baidu.com/link?url=yYEHJesIUg6HguekaIW-U0HtjtLn430Dh0NXSc7ej5ixppqcq21rsYMvlCo_qNOP&wd=&eqid=87bf080a00000c50000000035e83f9e4 实例: 接口
阅读全文
摘要:相关资料: https://www.baidu.com/link?url=yYEHJesIUg6HguekaIW-U0HtjtLn430Dh0NXSc7ej5ixppqcq21rsYMvlCo_qNOP&wd=&eqid=87bf080a00000c50000000035e83f9e4 https:
阅读全文
摘要:相关资料: https://www.cnblogs.com/h2285409/p/10059704.html Socket error 10038 – Socket operation on non-socket //非法的socket对象在操作 问题原因:因为我在联接上的Data挂了一个对象,关闭
阅读全文
摘要:相关资料: http://www.360doc.com/content/12/0628/09/7662927_220905393.shtml //delphi 求两个时间差 https://blog.csdn.net/zengcong2013/article/details/46369523 //d
阅读全文
摘要:相关资料: http://www.delphitop.com/html/shijian/4924.html 方法1: function GetDateFormat():string; var SysFrset: TFormatSettings; begin Result:=''; GetLocale
阅读全文
摘要:相关资料: https://www.cnblogs.com/h2285409/p/11714576.html http://www.delphitop.com/html/jiami/4213.html https://www.cnblogs.com/findumars/p/5789404.html
阅读全文
摘要:相关资料: 来自于QQ为“84365646”的方案。 实例: 1 unit Unit1; 2 3 interface 4 5 uses 6 Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classe
阅读全文
摘要:相关资料: https://www.iteye.com/blog/paulfzm-1835285 实例1: 1 unit Unit1; 2 3 interface 4 5 uses 6 Winapi.Windows, Winapi.Messages, System.SysUtils, System.
阅读全文
摘要:相关资料: https://bbs.csdn.net/topics/390387168 注意: uses System.Win.ComObj; 实例代码: 1 unit Unit1; 2 3 interface 4 5 uses 6 Winapi.Windows, Winapi.Messages,
阅读全文
摘要:相关资料:https://www.cnblogs.com/linyawen/archive/2011/10/01/2196950.html 如何在程序中执行动态生成的Delphi代码 经常发现有人提这类问题,或者提问内容最后归结成这种问题 前些阵子有位高手写了一个“执行动态生成的代码”,这是真正的高
阅读全文
摘要:http://anony3721.blog.163.com/blog/static/51197420107105132120/?ignoreua 1 Property 2 Keyword Defines controlled access to class fields System unit 3
阅读全文
摘要:资料地址: 1.https://www.cnblogs.com/studypanp/p/4890970.html 单元代码: 1 (****************************************** 2 文件和目录监控 3 当磁盘上有文件或目录操作时,产生事件 4 使用方法: 5
阅读全文
摘要:https://bbs.csdn.net/topics/391980918 1 unit Unit1; 2 3 interface 4 5 uses 6 Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System
阅读全文
摘要:function GetRTF(RE: TRichedit): string;varstrStream: TStringStream;beginstrStream := TStringStream.Create('') ;tryRE.PlainText := False;RE.Lines.SaveT
阅读全文
摘要:1.不间断空格\u00A0,主要用在office中,让一个单词在结尾处不会换行显示,快捷键ctrl+shift+space ; 2.半角空格(英文符号)\u0020,代码中常用的; 3.全角空格(中文符号)\u3000,中文文章中使用;
阅读全文