home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 1999 January
/
Chip_1999-01_cd.bin
/
zkuste
/
delphi
/
D1
/
DTOOLS30.ZIP
/
DEMO.DPR
next >
Wrap
Text File
|
1995-06-19
|
797b
|
25 lines
program Demo;
uses
Forms,
Demomisc in 'DEMOMISC.PAS' {MiscGadgets},
Demomain in 'DEMOMAIN.PAS' {FrontPanel},
Demobwcc in 'DEMOBWCC.PAS' {BWCCControls},
Demoled in 'DEMOLED.PAS' {LEDControls},
Democlok in 'DEMOCLOK.PAS' {Clocks},
Demodraw in 'DEMODRAW.PAS' {OwnerDrawControls},
Demoback in 'DEMOBACK.PAS' {BackgroundControls};
{$R *.RES}
begin
Application.CreateForm(TFrontPanel, FrontPanel);
Application.CreateForm(TMiscGadgets, MiscGadgets);
Application.CreateForm(TBWCCControls, BWCCControls);
Application.CreateForm(TLEDControls, LEDControls);
Application.CreateForm(TClocks, Clocks);
Application.CreateForm(TOwnerDrawControls, OwnerDrawControls);
Application.CreateForm(TBackgroundControls, BackgroundControls);
Application.Run;
end.