论坛


2010年4月11日 星期日

"岛主" 同学给我出的算法题

万一| 万一的 Delphi 博客 |12:10:00

阅读: 69 评论: 1 作者:万一发表于 2010-04-11 12:10原文链接问题来源:http://www.cnblogs.com/del/archive/2010/04/09/1708619.html#1798022问题描述 - 给出几组数值范围, 如:组一: 2..5组二: 3..6组三: 1..8组四: 2..10...然后从每组中选一个数字, 依次排列成一个?..

Offset Type casting for methods with generics

CodeGear| CodeGear-CodeCentral Delphi |07:04:25

So what this code does is allow you to capture the method of the record then easily call it with type checking for a different instance of the same record type.The following is the code, but the attached file is formated better.program RecFoo;uses...

2010年4月10日 星期六

学 Win32 汇编 [17]: 关于压栈(PUSH)与出栈(POP) 之一

万一| 万一的 Delphi 博客 |18:16:00

阅读: 10 评论: 0 作者:万一发表于 2010-04-10 18:16原文链接记得刚学多线程的时候, 碰到一个结构://Delphi 的语法描述 PContext = ^TContext; _CONTEXT = record ContextFlags: DWORD; Dr0: DWORD; Dr1: DWORD; Dr2: DWORD; Dr3: DWORD; Dr6: DWORD; ...

Delphi7 Lite Full v7.3.3.4 优化精简全功能版安装绿色二合一(Build20100404)

DELPHI盒子| Delphi盒子 |16:04:00

【序】 Borland是一家令人景仰的公司,当值Borland已成往事之际,谨以此产品献给曾经的Borland,纪念已经仙逝的Borland,借以缅怀Borland传奇中的经(精)典Delphi7.本产品仅供学习交流之用,未与任何盈利为目的,请勿用于任何非法的商业用途,否则后果自负. 【特?..

Sample DataSnap 2010

CodeGear| CodeGear-CodeCentral Delphi |06:08:58

Sample with fonts DataSnap 2010* Application Server* Client Win32* ClientDataSet and DBExpress Resources and TipsAny help/sugestion: bruno.lichot@borland.comEnjoy!

2010年4月9日 星期五

如何使用 URLOpenStream 函数 - 回复 "天泽" 的问题

万一| 万一的 Delphi 博客 |21:29:00

阅读: 41 评论: 0 作者:万一发表于 2010-04-09 21:29原文链接URLOpenStream 和 URLDownloadToFile 类似, 都是下载文件的 COM 函数;前者是下载到 IStream 流, 后者是直接下载到指定路径; 不如后者使用方便.它们都声明在 UrlMon 单元, 本例还要同时 uses ActiveX, 因为...

学 Win32 汇编 [16]: 常用寄存器的常规功能

万一| 万一的 Delphi 博客 |13:53:00

阅读: 34 评论: 0 作者:万一发表于 2010-04-09 13:53原文链接通用寄存器EAX累加(Accumulator)寄存器AX(AH、AL)常用于乘、除法和函数返回值EBX基址(Base)寄存器BX(BH、BL)常做内存数据的指针ECX计数器(Counter)寄存器CX(CH、CL)常做字符串和循环操作中的计数器EDX数据...

May 31-June 2: Delphi and RAD Studio Essentials in G?teborg, Sweden

Bob Swart| Dr.Bob’s Delphi Notes |09:33:46

I'm about to go to the UK for a 2-day Delphi MasterClass for the UK Developers Group, but if you missed that, you can still register for the next event I'm doing from May 31st until June 2nd in G?teborg, Sweden.

Get Windows Running Time

About.com| About.com Delphi Programming |02:00:13

2010年4月8日 星期四

学 Win32 汇编 [15]: LOOP 与标号

万一| 万一的 Delphi 博客 |17:02:00

阅读: 4 评论: 0 作者:万一发表于 2010-04-08 17:02原文链接Loop 是反复执行;从哪反复? 这要用到 "标号";反复几次? 把反复的次数告诉 ECX 寄存器即可.笨办法计算 3 * 8 = 24; Test15_1.asm .386 .model flat, stdcall include windows.inc include kernel32.i...

Delphi 101: dbExpress Database Access Components in Delphi

CodeGear| CodeGear-CDN Delphi |17:00:00

Learning How to Implementing Failover and Load Balancing in DataSnap 2010

CodeGear| CodeGear-CDN Delphi |15:53:37

学 Win32 汇编 [14]: 使用中括号 []

万一| 万一的 Delphi 博客 |15:52:00

阅读: 13 评论: 0 作者:万一发表于 2010-04-08 15:52原文链接[地址] 是取地址指向的内容:; Test1_.asm .386 .model flat, stdcall include windows.inc include kernel32.inc include masm32.inc include debug.inc includelib kernel32.lib includelib...

2010年4月7日 星期三

学 Win32 汇编 [13]: 定义符号常量(=、EQU、TEXTEQU)

万一| 万一的 Delphi 博客 |17:24:00

阅读: 10 评论: 0 作者:万一发表于 2010-04-07 17:24原文链接=、EQU、TEXTEQU 功能差不多, 它们定义的符号都将在编译前辈替换成它们指定的常量值.相比之下 EQU 更好用些.= 举例; Test13_1.asm .386 .model flat, stdcall include windows.inc include kernel3...

2D物理引擎box2D 2.1.0

DELPHI盒子| Delphi盒子 |16:04:00

box2D 2.1.0版本正式发布,相对于前几日在盒子论坛上挂出的预览版又做了较大幅度的改进。具体改进如下: 1.加入控制器(在文件UPhysics2DControllers中),可实现浮力、风力、万有引力场、爆炸、阻尼等效果。其中的风力与爆炸效果是原C++版本中所没有的。大家还有...

« 上一页

下一页 »