home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC Expert 29
/
Pce29cd.iso
/
RUNIMAGE
/
DELPHI40
/
DEMOS
/
ACTIVEX
/
DELCTRLS
/
ABOUT9.PAS
< prev
next >
Wrap
Pascal/Delphi Source File
|
1998-06-16
|
560b
|
35 lines
unit About9;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
StdCtrls, ExtCtrls, Buttons;
type
TDateTimePickerXAbout = class(TForm)
CtlImage: TSpeedButton;
NameLbl: TLabel;
OkBtn: TButton;
CopyrightLbl: TLabel;
DescLbl: TLabel;
end;
procedure ShowDateTimePickerXAbout;
implementation
{$R *.DFM}
procedure ShowDateTimePickerXAbout;
begin
with TDateTimePickerXAbout.Create(nil) do
try
ShowModal;
finally
Free;
end;
end;
end.