home *** CD-ROM | disk | FTP | other *** search
/ Troubleshooting Netware Systems / CSTRIAL0196.BIN / attach / pcmag / v14n14 / wcomp.exe / WCOMPSRC.ZIP / WCOMPARE.DPR < prev   
Text File  |  1995-03-25  |  464b  |  20 lines

  1. program Wcompare;
  2.  
  3. uses
  4.   Forms,
  5.   Main in 'MAIN.PAS' {FrameForm},
  6.   Child in 'CHILD.PAS' {EditForm},
  7.   About in 'ABOUT.PAS' {AboutBox},
  8.   Options in 'OPTIONS.PAS' {OptionsDlg};
  9.  
  10. {$R *.RES}
  11.  
  12. begin
  13.   Application.Title := 'WCompare';
  14.   Application.HelpFile := 'WCOMPARE.HLP';
  15.   Application.CreateForm(TFrameForm, FrameForm);
  16.   Application.CreateForm(TAboutBox, AboutBox);
  17.   Application.CreateForm(TOptionsDlg, OptionsDlg);
  18.   Application.Run;
  19. end.
  20.