上一页 1 ··· 87 88 89 90 91 92 93 94 95 ··· 215 下一页
摘要: 问题来源: http://www.cnblogs.com/del/archive/2008/12/20/985931.html#1408308 本例效果图: Dll 文件: library Lib; uses SysUtils, Classes; {$R *.res} procedure Test(p: PChar); const Title = 'Title '; var ... 阅读全文
posted @ 2008-12-20 22:44 万一 阅读(10845) 评论(38) 推荐(1) 编辑
摘要: 问题来源: http://www.cnblogs.com/del/archive/2008/12/20/1022124.html#1408043 这是从 http://www.cnblogs.com/del/archive/2008/08/17/1269958.html 修改来的. 代码文件: unit Unit1; interface uses Windows, Messages,... 阅读全文
posted @ 2008-12-20 21:30 万一 阅读(6889) 评论(23) 推荐(1) 编辑
摘要: 问题来源: http://www.cnblogs.com/del/archive/2008/12/20/985931.html#1408193 本例中的 Form2 所在 Unit2 中没有任何代码, 以下是 Unit1 中的代码: unit Unit1; interface uses Windows, Messages, SysUtils, Variants, Classes, Gr... 阅读全文
posted @ 2008-12-20 17:47 万一 阅读(2095) 评论(0) 推荐(0) 编辑
摘要: 指令及默认值可选值范围注释举例 {$A8} {$ALIGN8}{$A+},{$A-}, {$A1},{$A2},{$A4},{$A8}; {$ALIGN ON},{$ALIGN OFF}, {$ALIGN 1},{$ALIGN 2}, {$ALIGN 4},{$ALIGN 8} Local {$APPTYPE GUI} {$APPTYPE GUI}, {$APPTYPE CONSOLE}... 阅读全文
posted @ 2008-12-19 13:29 万一 阅读(8383) 评论(7) 推荐(1) 编辑
摘要: 找来找去没找到官方资料, 暂时把碰到过的列举出来吧, 以后慢慢补充. 版本标识: VER10 : Turbo Pascal 1 VER20 : Turbo Pascal 2 VER30 : Turbo Pascal 3 VER40 : Turbo Pascal 4 VER50 : Turbo Pascal 5 VER60 : Turbo Pascal 6 VER70 : Tur... 阅读全文
posted @ 2008-12-17 18:02 万一 阅读(5546) 评论(8) 推荐(0) 编辑
摘要: 1. $IFDEF 等同于 $IF DEFINED(...) : 它们的结束分别是: $ENDIF、$IFEND; 例子中的 VER200 是 Delphi 2009 的标识. begin {$IFDEF VER200} ShowMessage('这是 Delphi 2009'); {$ENDIF} {$IF DEFINED(VER200)} ShowMessage... 阅读全文
posted @ 2008-12-17 15:31 万一 阅读(8176) 评论(2) 推荐(0) 编辑
摘要: 一个程序从无到有的过程是这样的: 编辑代码 -> 预处理 -> 编译(成dcu等) -> 链接(为exe等). 什么是预处理? 譬如 VCL 中有很多代码是兼容 Linux 的, 在 Windows 下就需要在编译之前预处理掉那些 for Linux 的代码. 1、判断操作系统: 其中的 "MSWINDOWS" 和 "LINUX" 就是 Delphi 预定义的 "条件标识符". begi... 阅读全文
posted @ 2008-12-17 13:58 万一 阅读(16025) 评论(1) 推荐(1) 编辑
摘要: 问题来源: http://www.cnblogs.com/del/archive/2008/12/13/1081644.html#1400835 GetActiveWindow 只是获取当前程序中(严格地说是线程中)被激活的窗口; GetForegroundWindow 是获取当前系统中被激活的窗口. 两个函数的级别不一样, 一个是线程级、一个是系统级. 被激活的窗口不一定是顶层窗口(最上面... 阅读全文
posted @ 2008-12-13 16:23 万一 阅读(14406) 评论(13) 推荐(0) 编辑
摘要: 问题来源: http://www.cnblogs.com/del/archive/2008/12/13/1353193.html#1400641 本例效果图: 代码文件: unit Unit1; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Di... 阅读全文
posted @ 2008-12-13 09:16 万一 阅读(3981) 评论(15) 推荐(0) 编辑
摘要: 问题来源: http://www.cnblogs.com/del/archive/2008/12/11/1091310.html#1398793 本例效果图(这个例子还有问题, 拖动和移动的距离单位不一样): 代码文件: unit Unit1; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphi... 阅读全文
posted @ 2008-12-11 19:16 万一 阅读(7212) 评论(22) 推荐(0) 编辑
上一页 1 ··· 87 88 89 90 91 92 93 94 95 ··· 215 下一页