论坛


2008年9月28日 星期日

利用反射机制动态调用方法

rarnu| 橙子的Delphi技术专区-delphi |21:39:00

unit Unit1;interfaceusesWindows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,Dialogs, ObjAuto, StdCtrls;type{$MethodInfo ON}TTestCall = class(TPersistent)public    function Add(X,Y: integer): integer; &nbs...

BusinessSkinForm v. 6.50

CodeGear| CodeGear-CodeCentral Delphi |18:22:22

BusinessSkinForm VCL library help you to create applications with skins support for forms, menus, hints, many standard and DB controls. You can create your skins with special editor. Develop your business applications with BusinessSkinForm VCL!Fea...

DynamicSkinForm v. 9.50

CodeGear| CodeGear-CodeCentral Delphi |18:19:53

DynamicSkinForm VCL library help you to create applications with skins. Skins support for forms, menus, hints, many standard and non-standard original controls. Skins with many objects, effects help you to create standard and non-standard cool ap...

SmartFlash v.2.60

CodeGear| CodeGear-CodeCentral Delphi |18:06:28

SmartFlash is a VCL with additional features in Macromedia Flash ActiveX.SmartFlash support real trasparency of the flash and antialiasing effect in the flash frame.Also you can load flash, FLV from stream and grab frame to the bitmap with alpha-c...

SmartEffects v.1.50

CodeGear| CodeGear-CodeCentral Delphi |18:04:46

SmartEffects is an easy-to-use VCL that enables you to create amazing splash screens, forms, controls and image transition effects.Features: * easy to use * over 50 transition effects * cool collection with over 70 mask-bitmaps for...

delphi 改变菜单颜色和字体

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

procedure TForm1.N1DrawItem(Sender: TObject; ACanvas: TCanvas;ARect: TRect; Selected: Boolean);begin      //   set   the   background   color   and   draw&...

delphi 可选择颜色和字体的按钮,菜单

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

1.自画弹出菜单,可设置图标,字体,颜色等:  http://delphi.about.com/od/vclusing/a/owner_drawing.htm2.可改变背景颜色,字体颜色,字体的按钮控件:   http://delphi.about.com/od/vclwriteenhance/l/aa061104a.htm类别:delphi编程&n...

准备学习多线程

万一| 万一的 Delphi 博客 |14:55:00

多线程还没用好, 听说现在要提倡多进程了; 还是先学会多线程吧, 想了很久了, 估计最近能有点时间静下心来学习.在学习之初, 希望在这方面有实践经验的朋友能给点建议! 先谢谢了.[新闻]百度宣布把影视频道资产注入联合网视博客园首页 社区 新闻频道 小?..

Delphi版驱动进ring0代码

狐狸| 狐狸Hack-Delphi |12:00:18

unit miniDriver;//kongfoo/2005.4.16interfaceuses??Windows, WinSvc, SysUtils;type??aCallGate = packed record? ?aDword : Dword;? ?aWord : Word;??end;var

Delphi研究之驱动开发篇(一)

狐狸| 狐狸Hack-Delphi |12:00:04

标 题: 【原创】Delphi研究之驱动开发篇(一)作 者: mickeylan时 间: 2008-01-05,21:48链 接: http://bbs.pediy.com/showthread.php?t=57762Delphi能不能开发Windows的驱动程序(这里的驱动程序当然不是指VxD了^

封装delphi Hook Api

狐狸| 狐狸Hack-Delphi |11:59:56

unit?uApiHook;interfaceuses??SysUtils,?Windows,?TlHelp32;type??PJmpCode?=?^TJmpCode;??TJmpCode?=?packed?record????JmpCode:?BYTE;????Address:?Pointer;?

delphi利用HOOK拦截封包原理

狐狸| 狐狸Hack-Delphi |11:59:56

?骇客基地 阅读: 76 时间:2008-9-14 6:49:46 来源:www.hookbase.com ??截获API是个很有用的东西,比如你想分析一下别人的程序是怎样工作的。这里我介绍一下一种我自己试验通过的方法。 首先,我们必须设法把自己的代码放到目标程序的进程空间里去。Windows Ho

Delphi - 关于钩子函数HOOK (一)

狐狸| 狐狸Hack-Delphi |11:59:39

基本概念钩子(Hook),是Windows消息处理机制的一个平台,应用程序可以在上面设置子程以监视指定窗口的某种消息,而且所监视的窗口可以是其他进程所创建的。当消息到达后,在目标窗口处理函数之前处理它。钩子机制允许应用程序截获处理window消息或特定事件。钩子实际?..

实战DELPHI:远程线程插入(DLL注入)

狐狸| 狐狸Hack-Delphi |11:59:38

远程注入DLL方法有很多种,也是很多木马病毒所使用的隐藏进程的方法,因为通过程序加载的DLL在进程管理器是没有显示的.这里介绍一种用CreateRemoteThread 远程建立线程的方式注入DLL.例子是我在学习远程注入DLL时在网上找到的一个C语言代码翻译过来的.首先,我们...

跨进程获取其他程序的DBGrid内容

狐狸| 狐狸Hack-Delphi |11:59:37

跨进程获取其他程序的DBGrid内容 关键词: 钩子Hook ??DLL注入 ??FindControl ????????????????????????????????????????授课者:小李 关键词:钩子Hook, DLL注入, FindControl一、思考与启发 ?1.对于Windows