论坛


2009年1月25日 星期日

游戏王卡片DIY制作工具V1.3

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

V1.3 更新1. 增加了可以修改字体大小的功能2. 增加了保存卡片设计的功能,一次制作后保存,下次可以打开了继续修改。3. 优化了程序的一些算法,混色更快,低配置的电脑也能顺利使用。4. 修正了Vista Home下不定期报错的问题阅读全文类别:delphi技术 查看评论

常用字体符号列表

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

!-- function GetSymbol() { SymbolStr = ''; SymbolStr += 'IDArialWebdingsWingdingsWingdings 2Wingdings 3Symbol'; for (i=32; i256; i++) { SymbolStr += '' + i + '' + String.fromCharCode(i) + '' + String.fro...

Delphi 与 DirectX 之 DelphiX(95): TDIB.x

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

//让 TDIB 的这些特效烦透了: 多、还重复、又不完善; 还没有测试或测试失败的方法: procedure DrawShadow(SrcDIB: TDIB; X, Y, Width, Height, Frame: Integer; FilterMode: TFilterMode); procedure DrawShadows(SrcDIB: TDIB; X, Y, Width, Height, Frame: Integer...

IDE Fix Pack 2.2 for RAD Studio 2009

CodeGear| CodeGear-CodeCentral Delphi |12:36:59

The IDE Fix Pack installs an DLL-Expert that fixes the following Delphi/C++Builder 2009 bugs at runtime:Fixes the following bugs in the IDE (_not_ in your applications)* QC #67351: Debugger invokes anonymous method by itself* QC #58045: Component ...

IDE Fix Pack 2.2 for RAD Studio 2007

CodeGear| CodeGear-CodeCentral Delphi |12:35:58

The IDE Fix Pack installs an DLL-Expert that fixes the following RAD Studio 2007 bugs at runtime:Fixes the following bugs in the IDE (_not_ in your applications)* QC #58045: Component captions and component icons disappear from form designer* QC #...

Delphi 与 DirectX 之 DelphiX(94): TDIB.DrawAdditive();

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

本例效果图:代码文件:unit Unit1; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, DIB, StdCtrls; type TForm1 = class(TForm) DXPaintBox1: TDXPaintBox; Button1: TButton; Button2: ...

Controling DLL Loading and Initialization in Delphi applications

About.com| About.com Delphi Programming |11:00:55

DLLs :: When you are writing dynamic link libraries and need to control the loading and unloading of a DLL, or if you want to initialize your DLL when it...

Delphi 与 DirectX 之 DelphiX(93): TDIB.DrawDarken();

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

本例效果图:代码文件:unit Unit1; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, DIB, StdCtrls; type TForm1 = class(TForm) DXPaintBox1: TDXPaintBox; Button1: TButton; Button2: ...