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
/
FIND
/
FIND.DPR
< prev
next >
Wrap
Text File
|
1996-12-25
|
370b
|
18 lines
program Find;
uses
Forms,
Cust in 'Cust.pas' {fmCustomers},
DM in 'DM.pas' {DM2},
FindCust in 'FindCust.pas' {fmFindCust},
About in 'About.pas' {fmAboutBox};
{$R *.RES}
begin
Application.CreateForm(TfmCustomers, fmCustomers);
Application.CreateForm(TDM2, DM2);
Application.CreateForm(TfmFindCust, fmFindCust);
Application.Run;
end.