10 2019 档案

摘要:DELPHI中使用RTTI https://www.xuebuyuan.com/2082610.html 阅读全文
posted @ 2019-10-16 13:51 襄阳古城 阅读(119) 评论(0) 推荐(0) 编辑
摘要:Delphi中类的运行期TypeInfo信息结构说明 https://www.cnblogs.com/keyvip/archive/2010/12/14/1905432.html 阅读全文
posted @ 2019-10-15 19:53 襄阳古城 阅读(187) 评论(0) 推荐(0) 编辑
摘要://读取配置文件INI function ReadIniItem(const Section, Item,IniFileName, DefaultValue: String): string; var Value:string; begin SetLength(Value,3001*sizeof(C 阅读全文
posted @ 2019-10-15 19:34 襄阳古城 阅读(395) 评论(0) 推荐(0) 编辑
摘要:unit Unit1; interface uses Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics, Vcl.Controls, Vcl.Forms, V 阅读全文
posted @ 2019-10-13 13:06 襄阳古城 阅读(307) 评论(0) 推荐(0) 编辑
摘要:在OnShow加入弹出式窗口事件: procedure TForm1.FormShow(Sender: TObject); begin ANimateWindow(Handle,200,AW_SLIDE+AW_HOR_NEGATIVE); end; 关掉窗口滑动事件在OnClose加入: proce 阅读全文
posted @ 2019-10-13 11:47 襄阳古城 阅读(547) 评论(0) 推荐(0) 编辑
摘要:delphi获取目录下所有文件名 https://www.cnblogs.com/zhangzhifeng/p/5746026.html delphi 控件背景透明代码 https://www.cnblogs.com/blogpro/p/11339119.html Delphi控件的透明与不透明(要 阅读全文
posted @ 2019-10-11 00:14 襄阳古城 阅读(115) 评论(0) 推荐(0) 编辑
摘要:Delphi 代码实现窗口透明+圆角边框 https://blog.csdn.net/YZW20140807/article/details/77568493 说明:CreateRoundRectRgn(R.Left, R.Top, R.Right, R.Bottom, arc1, arc2); / 阅读全文
posted @ 2019-10-11 00:03 襄阳古城 阅读(374) 评论(0) 推荐(0) 编辑
摘要:Delphi利用Windows GDI实现文字倾斜 https://my.oschina.net/u/582827/blog/232720 unit Unit1; interface uses Winapi.Windows, Winapi.Messages, System.SysUtils, Sys 阅读全文
posted @ 2019-10-10 23:50 襄阳古城 阅读(265) 评论(0) 推荐(0) 编辑
摘要:相关网址:http://cc.embarcadero.com/Item/26950http://www.bilsen.com/gdiplushttp://www.bilsen.com/gdiplus/GdiPlus1.2.zip 万一的 blog 说终于, Delphi XE2 携带 GDI+ 库了 阅读全文
posted @ 2019-10-10 14:26 襄阳古城 阅读(360) 评论(0) 推荐(0) 编辑
摘要:Delphi与JAVA基本数据类型对比 2015-06-20 17:02:54 HaydenQ 阅读数 1715更多 分类专栏: Delphi JAVA 其他随笔 2015-06-20 17:02:54 HaydenQ 阅读数 1715更多 分类专栏: Delphi JAVA 其他随笔 2015-0 阅读全文
posted @ 2019-10-09 10:12 襄阳古城 阅读(387) 评论(0) 推荐(0) 编辑
摘要:Delphi中的图形显示技巧 目前在许多学习软件、游戏光盘中,经常会看到各种图形显示技巧,凭着图形的移动、交错、雨滴状、百页窗、积木堆叠等显现方式,使画面变得更为生动活泼,更能吸引观众。本文将探讨如何在delphi中实现各种图形显示技巧。 https://blog.csdn.net/javazhua 阅读全文
posted @ 2019-10-08 15:30 襄阳古城 阅读(186) 评论(0) 推荐(0) 编辑
摘要:Delphi 如何GET/POST 调用HTTP请求 https://blog.csdn.net/quan278905570/article/details/79724022 **HTTP请求的GET方法** 1 **HTTP请求的GET方法** 2 procedure GetDemo; 3 var 阅读全文
posted @ 2019-10-08 10:23 襄阳古城 阅读(2335) 评论(0) 推荐(0) 编辑
摘要:1 unit Unit1; 2 3 interface 4 5 uses 6 Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, 7 Dialogs, StdCtrls; 8 9 type 10 TFo 阅读全文
posted @ 2019-10-05 14:33 襄阳古城 阅读(841) 评论(0) 推荐(0) 编辑
摘要:1 unit Unit1; 2 3 interface 4 5 uses 6 Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, 7 Dialogs, ExtCtrls, StdCtrls; 8 9 type 10 TForm1 = class(TForm) 11... 阅读全文
posted @ 2019-10-05 11:35 襄阳古城 阅读(238) 评论(0) 推荐(0) 编辑
摘要:Delphi GDI绘图 Canvas 2010-10-05 11:14:56| 分类: 默认分类 | 标签:canvas 绘图 gdi delphi |举报|字号 订阅 http://anony3721.blog.163.com/blog/static/511974201095111456949/ 阅读全文
posted @ 2019-10-04 17:30 襄阳古城 阅读(590) 评论(0) 推荐(0) 编辑
摘要:1 unit Unit1; 2 3 interface 4 5 uses 6 Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics, 7 Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.ExtCtrls, Vcl.StdCtr 阅读全文
posted @ 2019-10-04 15:28 襄阳古城 阅读(561) 评论(0) 推荐(0) 编辑
摘要:delphi “div”、“mod”、“\”除法运算符的区别与使用方法 https://blog.csdn.net/zengcong2013/article/details/46369523 2015-06-04 23:44:35 踏雪无痕 阅读数 21036更多 分类专栏: DELPHI函数类 d 阅读全文
posted @ 2019-10-04 14:58 襄阳古城 阅读(340) 评论(0) 推荐(0) 编辑
摘要:万一博客总目录(2007.11.12 - 2010.4.25) https://www.cnblogs.com/del/archive/2010/04/25/1720750.html 如何用 GDI 绘制阴影文字 - 回复 "Splendour" 的问题如何把几张相同大小的图片拼合在 TImage 阅读全文
posted @ 2019-10-04 14:09 襄阳古城 阅读(331) 评论(0) 推荐(0) 编辑
摘要:Sql server 千万级大数据SQL查询优化 2018-08-04 16:08:44 you_mylove 阅读数 5063更多 分类专栏: SQL Sql server 千万级大数据SQL查询优化 2018-08-04 16:08:44 you_mylove 阅读数 5063更多 分类专栏:  阅读全文
posted @ 2019-10-03 14:35 襄阳古城 阅读(386) 评论(0) 推荐(0) 编辑
摘要:Delphi多线程的OnTerminate属性(附加一个关于临界区线程同步的例子) Delphi:与VCL同步(Synchronize()、用消息来同步) Delphi多线程编程--线程同步的方法(事件、互斥、信号、计时器)简介 Delphi中怎么结束线程(这个线程是定时执行的)(方案二) Delp 阅读全文
posted @ 2019-10-02 17:25 襄阳古城 阅读(178) 评论(0) 推荐(0) 编辑
摘要:unit Unit1; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls; type PMyParam = ^TMyParam; TM 阅读全文
posted @ 2019-10-02 16:11 襄阳古城 阅读(674) 评论(0) 推荐(0) 编辑
摘要:博客总目录(2007.11.12 - 2010.4.25) https://www.cnblogs.com/del/archive/2010/04/25/1720750.html 多线程编程(17) - 多线程同步之 WaitableTimer (等待定时器对象)[续三] 多线程编程(16) - 多 阅读全文
posted @ 2019-10-02 14:48 襄阳古城 阅读(207) 评论(0) 推荐(0) 编辑
摘要:什么是 MAP 文件?简单地讲, MAP 文件是程序的全局符号、源文件和代码行号信息的唯一的文本表示方法,它可以在任何地方、任何时候使用,不需要有额外的程序进行支持。而且,这是唯一能找出程序崩溃的地方的救星。 DELPHI下生成MAP文件的方法:生成详细的MAP信息的方法(二选一) 1. proje 阅读全文
posted @ 2019-10-01 17:35 襄阳古城 阅读(850) 评论(0) 推荐(0) 编辑

点击右上角即可分享
微信分享提示