home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Delphi 4 Bible
/
Delphi_4_Bible_Tom_Swan_IDG_Books_1998.iso
/
source
/
DingX
/
About1.pas
< prev
next >
Wrap
Pascal/Delphi Source File
|
1998-04-05
|
544b
|
35 lines
unit About1;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
StdCtrls, ExtCtrls, Buttons;
type
TDingButtonXAbout = class(TForm)
CtlImage: TSpeedButton;
NameLbl: TLabel;
OkBtn: TButton;
CopyrightLbl: TLabel;
DescLbl: TLabel;
end;
procedure ShowDingButtonXAbout;
implementation
{$R *.DFM}
procedure ShowDingButtonXAbout;
begin
with TDingButtonXAbout.Create(nil) do
try
ShowModal;
finally
Free;
end;
end;
end.