此处所列的文章均是我自己从国外的网站摘抄并翻译的,由于英文水平有限,里面肯定有不少错漏.翻译这些东西没有其他的什么用途,只是提高自己的英语阅读能力和编程技术水平而已     
摘要: unit Unit1;interfaceuses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls;var WM_SHUTDOWN_THREADS: Cardinal; //无符号32位type TForm1 = class(TForm) Button1: TBu... 阅读全文
posted @ 2010-09-19 15:27 AppleAndPear 阅读(274) 评论(0) 推荐(0) 编辑
摘要: unit Unit1;interfaceuses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs;type TForm1 = class(TForm) private Procedure WMENTERSIZEMOVE(var msg: TMessage); message WM_... 阅读全文
posted @ 2010-09-19 10:07 AppleAndPear 阅读(291) 评论(0) 推荐(0) 编辑
摘要: 1.国标码:“国家标准信息交换用汉字编码”(GB2312-80标准),简称国标码。国标码是二字节码, 用两个七位二进制数编码表示一个汉字。2.区位码:为了使每一个汉字有一个全国统一的代码,区位码是国家规定的94*94的一个方阵,其中每行叫做一个区,每列叫做一个位,组合起来就组成了区位码,我们可以在相关网站查询某个汉字的区位码,例如汉字“我”的区位码是... 阅读全文
posted @ 2010-08-04 08:02 AppleAndPear 阅读(7786) 评论(1) 推荐(0) 编辑
摘要: Inline Assembler in Delphi (III) Static ArraysBy Ernesto De Spirito <edspirito@latiumsoftware.com>Passing static arrays as parameters传递作为参数的静态数组Static arrays parameters are passed as pointers to... 阅读全文
posted @ 2010-06-27 15:50 AppleAndPear 阅读(519) 评论(0) 推荐(0) 编辑
摘要: verview of component creation组件创建概述This chapter provides an overview of component design and the process of writing components for Delphi applications. The material here assumes that you are familiar ... 阅读全文
posted @ 2010-06-26 11:10 AppleAndPear 阅读(2651) 评论(1) 推荐(1) 编辑
摘要: http://delphi.about.com/od/windowsshellapi/a/xml_delphi.htmCreating, Parsing and Manipulating XML Documents with DelphiDelphi and the Extensible Markup LanguageBy Zarko Gajic, About.com Guide使用Delphi创... 阅读全文
posted @ 2010-06-22 08:17 AppleAndPear 阅读(3315) 评论(0) 推荐(0) 编辑
摘要: asm mov ax, 1 sub ax, 1 //执行后ZF = 1 end;//ZF标志相关指令的计算结果是否为0.大都是算术指令,进行逻辑运算后算术运算.function MulInt2(I: Integer): Integer; 参数由EAX传入Begin asm add eax, eax end;end;function MulInt2(I: Integer): Integer;Begi... 阅读全文
posted @ 2010-06-11 08:11 AppleAndPear 阅读(224) 评论(0) 推荐(0) 编辑
摘要: The built-in assembler divides expressions into three classes: registers, memory references, and immediate values.内嵌的汇编器把表达式分为3种类型:寄存器,内存引用和立即数.An expression that consists solely of a register name is... 阅读全文
posted @ 2010-06-06 18:02 AppleAndPear 阅读(307) 评论(0) 推荐(0) 编辑
摘要: Differences between Delphi and assembler expressionsDelphi表达式和汇编表达式的区别The most important difference between Delphi expressions and built-in assembler expressions is that assembler expressions must res... 阅读全文
posted @ 2010-06-06 14:31 AppleAndPear 阅读(1817) 评论(0) 推荐(0) 编辑
摘要: Labels are used in built-in assembly statements as they are in the Delphi language--by writing the label and a colon before a statement. //标签被用在内嵌汇编中因为他们在Delphi语言中->用一个标签和分号写在一个语句之前。There is no lim... 阅读全文
posted @ 2010-06-06 10:57 AppleAndPear 阅读(264) 评论(0) 推荐(0) 编辑