论坛


2009年3月11日 星期三

DynamicSkinForm v. 10.32

CodeGear| CodeGear-CodeCentral Delphi |21:42:36

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...

BusinessSkinForm v. 7.32

CodeGear| CodeGear-CodeCentral Delphi |21:38:02

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...

ParamCount、ParamStr

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

//获取程序参数 //可从 Project -> Options -> Debugger -> Parameters 中输入模拟参数, 多个参数可用空格隔开 procedure TForm1.FormCreate(Sender: TObject); var i: Integer; begin for i := 1 to ParamCount do begin ListBox1.Items.Add(ParamStr(i))...

February 2009 Release of Delphi Prism Is Now Available

Nick Hodges| Nick Hodges |14:36:43

More information at:  http://edn.embarcadero.com/article/39408

How to add a built - in editor to a TListBox

delphi3000| delphi3000.com |12:00:00

When using a TListBox and when a user can or must modify an item of the list usually you must add another TEdit control to get the value of the selected item and after the user has set the value he wants you have to update the item by code. Well h...

How to connect and retrieve email to a POP3 account

delphi3000| delphi3000.com |12:00:00

This post will demonstrate how to connect and retrieve mail from a POP3 account. For the purpose of this demonstration we will need a TIdPOP3 component and a TIdMessage component.

MessageBox Wrapper

delphi3000| delphi3000.com |12:00:00

TgtMessageBox is a wrapper around the Windows MessageBox function with many features and extended properties regarding the parameters of the function

Get File Information Component

delphi3000| delphi3000.com |12:00:00

TgtFileInfo is a TComponent which can retrieve file information Version,Copyright,e.t.c

String Store Manipulate Multipuple TStrings

delphi3000| delphi3000.com |12:00:00

TStringStore is a TComponent to manipulate multiple TStrings

提高Delphi2009性能的小技巧

Admin| 二十年前旧板桥 |08:54:15

Here's a small little Delphi performance tip that I'm not sure many people are aware of. Putting the $EXTERNALSYM after the symbol has better compiler performance than placing it before the symbol. The reason for this is pretty simple. When the co...