home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
DOS/V Power Report 1996 August
/
VPR9608A.BIN
/
del20try
/
install
/
data.z
/
FIND.DPR
< prev
next >
Wrap
Text File
|
1996-05-08
|
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.