home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 1999 January
/
Chip_1999-01_cd.bin
/
zkuste
/
delphi
/
QDB
/
VADDBOOK.ZIP
/
add_book.dpr
< prev
next >
Wrap
Text File
|
1998-06-28
|
221b
|
15 lines
program add_book;
uses
Forms,
AB_Main in 'AB_Main.pas' {AB_Form};
{$R *.RES}
begin
{$IFDEF WIN32}Application.Initialize; {$ENDIF}
Application.CreateForm(TAB_Form, AB_Form);
Application.Run;
end.