home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 2003 February
/
Chip_2003-02_cd1.bin
/
zkuste
/
delphi
/
kompon
/
d3456
/
PICSHOW.ZIP
/
Demo
/
PSDemo.dpr
< prev
next >
Wrap
Text File
|
2002-10-25
|
313b
|
20 lines
program PSDemo;
uses
Forms,
Main in 'Main.pas' {MainForm},
Splash in 'Splash.pas' {SplashForm};
{$R *.RES}
begin
Application.Initialize;
with TSplashForm.Execute do
try
Application.CreateForm(TMainForm, MainForm);
finally
Free;
end;
Application.Run;
end.