home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
DOS/V Power Report 1997 August
/
VPR9708A.ISO
/
D3TRIAL
/
INSTALL
/
DATA.Z
/
FILTER.DPR
< prev
next >
Wrap
Text File
|
1997-04-24
|
378b
|
18 lines
program Filter;
uses
Forms,
DM in 'DM.pas' {DM1},
CustView in 'CustView.pas' {fmCustView},
About in 'About.pas' {fmAboutBox},
Filter1 in 'Filter1.pas' {fmFilterFrm};
{$R *.RES}
begin
Application.CreateForm(TfmCustView, fmCustView);
Application.CreateForm(TDM1, DM1);
Application.CreateForm(TfmFilterFrm, fmFilterFrm);
Application.Run;
end.