home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 2003 February
/
Chip_2003-02_cd1.bin
/
zkuste
/
delphi
/
kompon
/
d3456
/
PICSHOW.ZIP
/
DBDemo
/
DBPSDemo.dpr
next >
Wrap
Text File
|
2002-09-24
|
319b
|
20 lines
program DBPSDemo;
uses
Forms,
Main in 'Main.pas' {MainForm},
Splash in 'Splash.pas' {SplashForm};
{$R *.RES}
begin
Application.Initialize;
TSplashForm.ShowSplash;
try
Application.CreateForm(TMainForm, MainForm);
finally
TSplashForm.HideSplash;
end;
Application.Run;
end.