home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip: Shareware for Win 95
/
Chip-Shareware-Win95.bin
/
ostatni
/
delphi
/
ruzne
/
auto32d3.exe
/
rar
/
AUTO32D3
/
DEMOS
/
DELPHI3.0
/
DBREFER
/
DBREFER.DPR
< prev
next >
Wrap
Text File
|
1997-04-03
|
281b
|
16 lines
program dbrefer;
uses
Forms,
main in 'main.pas' {ManForm},
About in 'About.pas' {fmAboutBox};
{$R *.RES}
begin
Application.Initialize;
Application.CreateForm(TManForm, ManForm);
Application.CreateForm(TfmAboutBox, fmAboutBox);
Application.Run;
end.