home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Troubleshooting Netware Systems
/
CSTRIAL0196.BIN
/
attach
/
pcmag
/
v14n14
/
wcomp.exe
/
WCOMPSRC.ZIP
/
WCOMPARE.DPR
< prev
Wrap
Text File
|
1995-03-25
|
464b
|
20 lines
program Wcompare;
uses
Forms,
Main in 'MAIN.PAS' {FrameForm},
Child in 'CHILD.PAS' {EditForm},
About in 'ABOUT.PAS' {AboutBox},
Options in 'OPTIONS.PAS' {OptionsDlg};
{$R *.RES}
begin
Application.Title := 'WCompare';
Application.HelpFile := 'WCOMPARE.HLP';
Application.CreateForm(TFrameForm, FrameForm);
Application.CreateForm(TAboutBox, AboutBox);
Application.CreateForm(TOptionsDlg, OptionsDlg);
Application.Run;
end.