论坛


2009年8月3日 星期一

台球计时软件采用access数据库

DELPHI盒子| Delphi盒子 |16:08:00

台球厅计时包含会员管理功能。用到了BussinessSkin

Delphi文本和图形 图像 Image的打印

幸福苹果| 幸福苹果-delphi |11:47:00

http://www.cnblogs.com/josix/archive/2008/03/03/1088553.html对于每一个Windows应用程序开发者来说,打印功能的实现都是极为棘手的,因为要涉及到相当多的代码,而且常常是相当复杂,但是在Delphi中实现文本和图像的打印功能却是非常容易的。文本的打印功能Delphi中文...

Delphi 取得本机打印机列表 取得本机打印机名称 取得本机所有已安装驱动的打印机名称

幸福苹果| 幸福苹果-delphi |11:45:00

unit Unit1;interfaceusesWindows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,Dialogs,Printers,StdCtrls;typeTForm1 = class(TForm)    ComboBox1: TComboBox;    procedure FormCreate(Sender: TObject)...

delphi 取得本机打印机列表及打印机详细信息

幸福苹果| 幸福苹果-delphi |11:44:00

unit Unit1;interfaceusesWindows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,Dialogs,WinSpool,Printers,StdCtrls;typeTPrinterInfo = record    SeverName         : PChar;&n...

[Delphi]Packed Record和Record的区别

幸福苹果| 幸福苹果-delphi |11:22:00

在Delphi中,Record的数据各个字节都是对齐的,数据格式比较完整,所以这种格式相对packed record占用的内存比较大,但是因为格式比较整齐,所以电脑读取这个类型的数据的时候速度比较快。 而Packed Record对数据进行了压缩,节省了内存空间,当然他的速度也变的慢了...

Delayed Event Handling Using Event Handler Detaching for Delphi Applications

About.com| About.com Delphi Programming |06:02:21

in Delphi TIPS ::The article How to Detach an Event Handler from a Control Event describes a simple mechanism to remove an event handling procedure from a control's event. Allan Lloyd...