home *** CD-ROM | disk | FTP | other *** search
/ DOS/V Power Report 1996 August / VPR9608A.BIN / del20try / install / data.z / FILTER.DPR < prev    next >
Text File  |  1996-05-08  |  378b  |  18 lines

  1. program Filter;
  2.  
  3. uses
  4.   Forms,
  5.   DM in 'DM.pas' {DM1},
  6.   CustView in 'CustView.pas' {fmCustView},
  7.   About in 'About.pas' {fmAboutBox},
  8.   Filter1 in 'Filter1.pas' {fmFilterFrm};
  9.  
  10. {$R *.RES}
  11.  
  12. begin
  13.   Application.CreateForm(TfmCustView, fmCustView);
  14.   Application.CreateForm(TDM1, DM1);
  15.   Application.CreateForm(TfmFilterFrm, fmFilterFrm);
  16.   Application.Run;
  17. end.
  18.