论坛


2009年10月21日 星期三

Delphi加壳 - Delphi知识(大富翁离线)

幸福苹果| 幸福苹果-delphi |16:53:00

http://i.cnsoftware.cn/space-dfwthread-id-3906625.html阅读全文类别:delphi编程 查看评论

Anti-Monitor Delphi反调试

幸福苹果| 幸福苹果-delphi |16:52:00

http://www.samool.com/archives/251/该日志由 samool 发表于 2007-01-22 3:20 PM//Anti-Monitor  Function   ABC39:   Boolean;   //检测Dump;  var        hFile:&nbsp...

Delphi 19种反调试检测法

幸福苹果| 幸福苹果-delphi |16:52:00

http://www.7747.net/Article/200906/39802.html//使用IsDebuggerPresent这个API来检测是否被调试function FD_IsDebuggerPresent(): Boolean;beginif IsDebuggerPresent then      Result := Trueelse      Res...

加壳exe的方法--delphi实现

幸福苹果| 幸福苹果-delphi |16:51:00

http://blog.csdn.net/menliwxj/archive/2009/09/08/4530315.aspxEXE文件加密器的原理:建立两个文件,一个用来添加资源到另外一个EXE文件里面,称为添加程序。另外一个被添加的EXE文件称为头文件。该程序的功能是把添加到自己里面的文件读出来。Windows下的EXE文件?..

加壳原理与简单实现加壳(delphi源码)

幸福苹果| 幸福苹果-delphi |16:50:00

http://www.cnblogs.com/iinsnian/archive/2008/06/10/1216579.html类别:delphi编程 查看评论

第12期的Delphi自校验

幸福苹果| 幸福苹果-delphi |16:31:00

http://hi.baidu.com/%CD%C7%B7%CF%C9%B5%D3%E3/blog/item/009f4e806876c6debc3e1ec1.html类别:delphi编程 查看评论

用Delphi编写网络验证程序

幸福苹果| 幸福苹果-delphi |16:30:00

http://tech.ddvip.com/2009-01/1231118838104391.html阅读全文类别:delphi编程 查看评论

delphi实现校验文件大小

幸福苹果| 幸福苹果-delphi |16:30:00

http://www.gcc8.com/wenzhang/html4/pro2/2156.html阅读全文类别:delphi编程 查看评论

Dephi中获取webbrowser选取区域的html代码示例。

幸福苹果| 幸福苹果-delphi |16:29:00

http://tech.ddvip.com/2008-12/1229332160100148.html  这个问题来自论坛提问,示例代码如下,主要是要了解Document对象  //-----阅读全文类别:delphi编程 查看评论

用Delphi检测一个网址,url地址是否正确

幸福苹果| 幸福苹果-delphi |16:26:00

http://www.cnblogs.com/taobataoma/archive/2008/08/23/728269.htmlPosted on 2007-04-26 14:18OldHawk阅读(348)评论(1)编辑阅读全文类别:delphi编程 查看评论

DictaSoft Layout Pack

CodeGear| CodeGear-CodeCentral Delphi |15:25:57

This package is replacement for VCL TFlowPanel and TGridPanel.Main goal of the package is to escape from absolute positioning in form design and all induced problems.It's inspired and mimics W3C CCS3 Template Layout Specification[http://www.w3.org...

Delphi@SDC2009

Pawel Glowacki| Pawel Glowacki |14:36:28

The SDC 2009 conference is over. It is the biggest annual developer conference in the Netherlands with 2 days full of session in 9 parallel tracks and international speakers. This year SDN Conference was also hosting the official Dutch Windows 7 l...

Delphi 2010 新增功能之: 手势编程[5] - 关于自定义手势

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

添加 TGestureManager 后, 双击其图标即可进入自定义手势编辑;编辑框中, Sensitivity 用来调整手势响应的敏感度; 取消 Unidirectional 的勾选后反向手势也可识别; 其他都一目了然.一个或一组手势设计可以保存为一个 dgf 文件.通过控件属性中的 Touch -> Gestures 旁?..

Delphi 2010 新增功能之: 手势编程[4] - 关于 OnGesture 事件过程的参数

万一| 万一的 Delphi 博客 |11:49:00

OnGesture 事件中的 const EventInfo: TGestureEventInfo; 参数主要用于识别手势信息;前面用过 EventInfo.GestureID, 还有 EventInfo.Location 给出了手势动作的起点坐标, 测试代码:procedure TForm1.FormGesture(Sender: TObject; const EventInfo: TGestureEvent...

Delphi 2010 新增功能之: 手势编程[3] - 直接给某个手势指定动作

万一| 万一的 Delphi 博客 |11:20:00

除了通过 OnGesture 事件识别手势, 还可以直接个某个手势指定动作.这需要用到: TActionList 或 TActionManager; 本例用了 TActionList.操作步骤:1、给窗体添加并关联 TGestureManager, 还要添加 TActionList;2、给动作关联 Action:3、给 Action 写代码.代码文件:unit...