随笔分类 -  《21天学通Delphi》

上一页 1 2 3 4 5 6 ··· 12 下一页

Delphi类引用示例
摘要:相关资料: https://jingyan.baidu.com/article/bad08e1e2ec23b09c9512148.html 实例代码: 1 unit Unit1; 2 3 interface 4 5 uses 6 Winapi.Windows, Winapi.Messages, Sy 阅读全文

posted @ 2020-04-25 15:48 疯狂delphi 阅读(682) 评论(0) 推荐(0)

delphi实现电脑屏幕旋转(电脑屏幕,不是手机屏幕)
摘要:相关资料: 注意:是电脑屏幕,不是手机屏幕 实例代码: 1 unit Unit10; 2 3 interface 4 5 uses 6 Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, 阅读全文

posted @ 2020-04-07 17:21 疯狂delphi 阅读(602) 评论(0) 推荐(0)

教程-关于escape和URI之间的不同!
摘要:相关资料: https://blog.csdn.net/object277910278/article/details/20669963 1.Escape方法 对String对象编码以便它们能在所有计算机上可读, escape(charString) 必选项 charstring 参数是要编码的任意 阅读全文

posted @ 2020-04-02 16:32 疯狂delphi 阅读(446) 评论(0) 推荐(0)

在Delphi中URLEncode文件名的最佳方法是什么?
摘要:相关资料: http://www.voidcn.com/article/p-uwvfunpb-bwd.html https://blog.csdn.net/xieyunc/article/details/81568144 我的桌面应用程序必须从Internet下载文件.该文件的路径是已知的,文件名本 阅读全文

posted @ 2020-04-02 16:20 疯狂delphi 阅读(628) 评论(0) 推荐(0)

Delphi实现js中的escape()编码和unescape()解码
摘要:相关资料: http://www.it588.cn/softdev/2019-05-06/603.html 方法一: 引入单元: uses ActiveX, ComObj; 实例调用: //javascript中的escape()函数的delphi实现function Escape(s: strin 阅读全文

posted @ 2020-04-02 16:03 疯狂delphi 阅读(635) 评论(0) 推荐(0)

面向对象: 接口与对象生存周期,接口自动释放
摘要:相关资料: https://www.baidu.com/link?url=yYEHJesIUg6HguekaIW-U0HtjtLn430Dh0NXSc7ej5ixppqcq21rsYMvlCo_qNOP&wd=&eqid=87bf080a00000c50000000035e83f9e4 实例: 接口 阅读全文

posted @ 2020-04-01 14:00 疯狂delphi 阅读(261) 评论(0) 推荐(0)

问题-Delphi在做窗体派生时提示Resource TForm2 not found
摘要:相关资料: https://www.baidu.com/link?url=yYEHJesIUg6HguekaIW-U0HtjtLn430Dh0NXSc7ej5ixppqcq21rsYMvlCo_qNOP&wd=&eqid=87bf080a00000c50000000035e83f9e4 https: 阅读全文

posted @ 2020-04-01 11:28 疯狂delphi 阅读(336) 评论(0) 推荐(0)

问题-delphi idTCPserver-Socket error问题详解
摘要:相关资料: https://www.cnblogs.com/h2285409/p/10059704.html Socket error 10038 – Socket operation on non-socket //非法的socket对象在操作 问题原因:因为我在联接上的Data挂了一个对象,关闭 阅读全文

posted @ 2020-03-23 10:09 疯狂delphi 阅读(778) 评论(0) 推荐(0)

delphi 求两个时间差
摘要:相关资料: http://www.360doc.com/content/12/0628/09/7662927_220905393.shtml //delphi 求两个时间差 https://blog.csdn.net/zengcong2013/article/details/46369523 //d 阅读全文

posted @ 2020-03-07 15:19 疯狂delphi 阅读(2472) 评论(0) 推荐(0)

Delphi 解决StrToDateTime()不是有效日期类型的问题
摘要:相关资料: http://www.delphitop.com/html/shijian/4924.html 方法1: function GetDateFormat():string; var SysFrset: TFormatSettings; begin Result:=''; GetLocale 阅读全文

posted @ 2020-03-07 14:52 疯狂delphi 阅读(1840) 评论(0) 推荐(0)

Delphi 文件转换Base64、Base64转换文件
摘要:相关资料: https://www.cnblogs.com/h2285409/p/11714576.html http://www.delphitop.com/html/jiami/4213.html https://www.cnblogs.com/findumars/p/5789404.html 阅读全文

posted @ 2020-02-10 13:02 疯狂delphi 阅读(2833) 评论(0) 推荐(0)

窗体半透明并且鼠标穿透效果
摘要:相关资料: 来自于QQ为“84365646”的方案。 实例: 1 unit Unit1; 2 3 interface 4 5 uses 6 Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classe 阅读全文

posted @ 2019-09-11 13:48 疯狂delphi 阅读(1126) 评论(0) 推荐(0)

窗体全透明但窗体上的控件不透明
摘要:相关资料: 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. 阅读全文

posted @ 2019-09-10 15:11 疯狂delphi 阅读(643) 评论(0) 推荐(0)

数学、布尔表达式计算
摘要:相关资料: https://bbs.csdn.net/topics/390387168 注意: uses System.Win.ComObj; 实例代码: 1 unit Unit1; 2 3 interface 4 5 uses 6 Winapi.Windows, Winapi.Messages, 阅读全文

posted @ 2019-06-25 15:18 疯狂delphi 阅读(504) 评论(0) 推荐(0)

教程-执行动态的delphi脚本
摘要:相关资料:https://www.cnblogs.com/linyawen/archive/2011/10/01/2196950.html 如何在程序中执行动态生成的Delphi代码 经常发现有人提这类问题,或者提问内容最后归结成这种问题 前些阵子有位高手写了一个“执行动态生成的代码”,这是真正的高 阅读全文

posted @ 2019-05-28 14:35 疯狂delphi 阅读(1626) 评论(0) 推荐(0)

教程-Delphi Property详解
摘要:http://anony3721.blog.163.com/blog/static/51197420107105132120/?ignoreua 1 Property 2 Keyword Defines controlled access to class fields System unit 3 阅读全文

posted @ 2019-05-09 09:28 疯狂delphi 阅读(2039) 评论(0) 推荐(0)

Delphi目录监控、目录监听
摘要:资料地址: 1.https://www.cnblogs.com/studypanp/p/4890970.html 单元代码: 1 (****************************************** 2 文件和目录监控 3 当磁盘上有文件或目录操作时,产生事件 4 使用方法: 5 阅读全文

posted @ 2019-03-14 20:32 疯狂delphi 阅读(1305) 评论(0) 推荐(0)

delphi怎样把子窗体显示在pagecontrol的tabsheet
摘要: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 阅读全文

posted @ 2019-03-11 15:13 疯狂delphi 阅读(1724) 评论(0) 推荐(0)

delphi从TRichEdit获得RTF格式文本(PC版本)
摘要:function GetRTF(RE: TRichedit): string;varstrStream: TStringStream;beginstrStream := TStringStream.Create('') ;tryRE.PlainText := False;RE.Lines.SaveT 阅读全文

posted @ 2019-03-11 11:21 疯狂delphi 阅读(1069) 评论(1) 推荐(0)

教程-三种空格unicode(\u00A0,\u0020,\u3000)表示的区别
摘要:1.不间断空格\u00A0,主要用在office中,让一个单词在结尾处不会换行显示,快捷键ctrl+shift+space ; 2.半角空格(英文符号)\u0020,代码中常用的; 3.全角空格(中文符号)\u3000,中文文章中使用; 阅读全文

posted @ 2019-02-09 12:36 疯狂delphi 阅读(2886) 评论(0) 推荐(0)

上一页 1 2 3 4 5 6 ··· 12 下一页

导航