home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 2002 March
/
Chip_2002-03_cd1.bin
/
zkuste
/
delphi
/
kompon
/
d5
/
CSDBPACK.ZIP
/
sample
/
testcs.dpr
< prev
next >
Wrap
Text File
|
2001-12-05
|
224b
|
15 lines
program testcs;
uses
Forms,
testbrowse in 'testbrowse.pas' {Form1};
{$R *.RES}
begin
Application.Initialize;
Application.Title := '';
Application.CreateForm(TForm1, Form1);
Application.Run;
end.