随笔分类 - DELPHI
摘要:1 it CompilerhelperForInitializingFinalizingVariable; 2 3 interface 4 5 { Compiler helper for initializing/finalizing variable } 6 7 procedure _Initialize(p : Pointer; typeInfo : Poi...
阅读全文
摘要:DELPHI - How to use opendialog1 for choosing a folder?On Vista and up you can show a more modern looking dialog usingTFileOpenDialog.var OpenDialog: ...
阅读全文
摘要:How to add Leading Zeroes to a Number (Delphi Format)Here's how convert (an integer) number to a string by adding an amount of leading zeroes.Suppose ...
阅读全文
摘要:How to detect the types of executable filestype { IMAGE_DOS_HEADER: DOS .EXE header. } IMAGE_DOS_HEADER = packed record e_magic : Word; ...
阅读全文
摘要:Analyze PE file headers?{ You'll need a OpenDialog to open a Exe-File and a Memo to show the file informations }{ Man braucht einen OpenDialog um ein...
阅读全文
摘要:Malware Analysis Tutorial 8: PE Header and Export Table2. Background Information of PE HeaderAny binary executable file (no matter on Unix or Windows)...
阅读全文
摘要:{=================================================================功 能:创建 桌面、发送到...、快速启动栏、开始菜单、程序菜单、右键菜单 快捷方式参 数:FileName : 快捷方式执行文件名Description : 快捷方式...
阅读全文
摘要:DISQLite3 implements a self-contained, embeddable, zero-configurationSQLdatabase engine for Delphi (Embarcadero / CodeGear / Borland).Features include...
阅读全文
摘要:http://bbs.csdn.net/topics/390816856RADStudioXE8目前最新版v22.0.19027.8951官方ISO文件下载(6.72GB):http://altd.embarcadero.com/download/radstudio/xe8/delphicbuild...
阅读全文
摘要:http://www.jx19.com/xxzl/Delphi/2010/04/17/ShiZhanDELPHI_YuanChengXianChengChaRu_DLLZhuRu/远程注入DLL方法有很多种,也是很多木马病毒所使用的隐藏进程的方法,因为通过程序加载的DLL在进程管理器是没有显示的.这...
阅读全文
摘要:WisdomPluginFramework是融合OSGI微内核理念 + Eclipse的扩展点概念而精心设计的轻量级插件框架,由Delphi实现,但可以使用于Delphi、BCB、VC++中,提供非常强大灵活的插件调度能力,让你充分享受插件式编程的乐趣。http://www.cnblogs.com/...
阅读全文
摘要:http://delphi.about.com/od/windowsshellapi/l/aa040803a.htmHow to register (and unregister) OLE controls such as dynamic-link library (DLL) or ActiveX ...
阅读全文
摘要:前言 我写Delphi程序是从MIS系统入门的,开始尝试子系统划分的时候采用的是MDI窗体的结构。随着系统功能的扩充,不断有新的子系统加入系统中,单个工程会变得非常大,每次做一点修改都要重新编译,单个工程的形式也不利于团队协作。为了提高工作效率,我希望利用DLL动态链接库的形式实现插件结构的编程。...
阅读全文
摘要:Delphi插件创建、调试与使用应用程序扩展翻译 : MiracleZ 有没有使用过Adobe Photoshop?如果用过,你就会对插件的概念比较熟悉。对外行人来说,插件仅仅是从外部提供给应用程序的代码块而已(举个例子来说,在一个DLL中)。一个插件和一个普通DLL之间的差异在于插件具有扩展父应用...
阅读全文
摘要:深入Delphi下的DLL编程作者:岑心引 言相信有些计算机知识的朋友都应该听说过“DLL”。尤其是那些使用过windows操作系统的人,都应该有过多次重装系统的“悲惨”经历——无论再怎样小心,没有驱动损坏,没有病毒侵扰,仍然在使用(安装)了一段时间软件后,发现windows系统越来越庞大,操作越来...
阅读全文
摘要:http://delphi.about.com/od/objectpascalide/a/errorexception.htmUnfortunately, building applications includes coding.Regardless of how carefully you wr...
阅读全文
摘要:http://www.delphisources.ru/pages/faq/master-delphi-7/content/LiB0104.htmlBeside this introductory example, you can do a few extra things with dynamic...
阅读全文
摘要:How to put a relative path for a DLL statically loaded?I have a DLL made in Delphi 7/Windows XP that I want to statically load in a host application o...
阅读全文
摘要:一 Dll的制作一般分为以下几步:1 在一个DLL工程里写一个过程或函数2 写一个Exports关键字,在其下写过程的名称。不用写参数和调用后缀。二 参数传递1 参数类型最好与window C++的参数类型一致。不要用DELPHI的数据类型。2 最好有返回值[即使是一个过程],来报出调用成功或失败,...
阅读全文
摘要:http://stackoverflow.com/questions/2043/can-a-windows-dll-retrieve-its-own-filenameA windows exe file has access to the command string which invoked i...
阅读全文