#LP

delphi下,不错的多语言翻译组件

   http://yktoo.com/en/software/dklangTraned   http://sourceforge.net/projects/dklang/...

delphi xe memory leak produced in WSDLLookup.pas

constructorTWSDLLookup.Create;beginFLookup:=TDictionary<string,Variant>.Create;end;destructorTWSDLLookup.Destroy;beginClearWSDLLookup;//问题在这里inherited;end...

EditorLineEnds.ttr 受影响的D版本 Delphi 8-2010

 http://stackoverflow.com/questions/25295980/delphi-2006-2010-error-cannot-create-file-c-users-admin-appdata-local-temp-ed 安装idefixpack解决这个问题。http://a...

delphi中的临界区

varfLock:TRTLCriticalSection;//定义临界区域//初始化InitializeCriticalSection(fLock);//进入临界区EnterCriticalSection(fLock);//离开临界区LeaveCriticalSection(fLock);//删除DeleteCriti...
代码星球 ·2021-01-22

What's New in Delphi and C++Builder XE7

http://docwiki.embarcadero.com/RADStudio/XE7/en/What%27s_New_in_Delphi_and_C%2B%2BBuilder_XE7...
代码星球 ·2021-01-22

(转)TComboBox patch for Delphi 7

unitD7ComboBoxStringsGetPatch;//ThepatchfixesTCustomComboBoxStrings.GetmethodforemptystringiteminDelphi7.interface{$IFRTLVersion<>15.0}'Thispatchisintende...
代码星球 ·2021-01-22

delphi xe7 FireDAC 官方文档

http://docwiki.embarcadero.com/RADStudio/XE7/en/Category:FireDAC...

Delphi Variant oleVariant

TheOleVarianttypeexistsonboththeWindowsandLinuxplatforms.ThemaindifferencebetweenVariantandOleVariantisthatVariantcancontaindatatypesthatonlythecurrentapplicati...
代码星球 ·2021-01-22

delphi调用 java 的 WebService服务端.

//InvRegistry.RegisterInvokeOptions(TypeInfo(ModelADServicePortType),ioLiteral);InvRegistry.RegisterInvokeOptions(TypeInfo(ModelADServicePortType),ioDocument); ...

Delphi 泛型对象类

{很早就写了. 只针对delphixe以上的版本可用.  希望不是自己在造轮子. }1unitU_ClassUtility;23interface4usesgenerics.defaults,DateUtils,Classes,SysUtils,Windows,generics.collections;56type7T...
代码星球 ·2021-01-22

PHP realpath() 函数

定义和用法realpath()函数返回绝对路径。该函数删除所有符号连接(比如'/./','/../'以及多余的'/'),返回绝对路径名。若失败,则返回false。比如说文件不存在的话。例如:<?phpechorealpath("test.txt");?>输出:C:Inetpubestwebest.txt又如...
代码星球 ·2021-01-16

.net DBHelper

 DBHelper.cs是程序来连接数据的,也是一个程序必不可少的一个类(本人道行浅,目前这样认为)。由于一个程序基本写一次,容易忘记。所有写在这里备注  首先是引用 usingSystem.Data;usingSystem.Data.SqlClient;usingSystem....
代码星球 ·2021-01-15

Delphi基本图像处理方法汇总

这篇文章主要介绍了Delphi基本图像处理方法,实例汇总了Delphi操作图像实现浮雕、反色、模糊、翻转等常用效果的方法,非常具有实用价值,需要的朋友可以参考下 本文实例汇总了Delphi基本图像处理方法。分享给大家供大家参考。具体分析如下://浮雕procedureEmboss(SrcBmp,DestBmp...

Delphi制作图像特殊显示效果

Delphi制作实现图像的各种显示效果,比如百叶窗、渐变、淡入淡出、水平交错、雨滴效果等,用鼠标点击“打开图像”按钮,可以选择图像文件导入到窗体中;点击其它各个按钮,可以实现图像显示特效,例如:点击“推拉效果”,图像将从窗体下方缓缓向上升起;点击“垂直交错”,图片将从窗口上下同时出现,直到相互汇合,形成一幅完整的图片;...

在delphi中,DLL加载时做初始化的Demo

libraryDLLEntry;//dll源码usesSysUtils,Classes,Dialogs,Windows;{$R*.res}procedureDLLEntryPoint(dwReason:DWord);begincasedwReasonofDLL_PROCESS_ATTACH:showMessage('映...
首页上一页...56789...下一页尾页