home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1997 May / Pcwk0597.iso / delphi / showfile.lzh / SFWSRC.ZIP / SFW.DPR < prev    next >
Text File  |  1995-07-19  |  361b  |  18 lines

  1. program Sfw;
  2.  
  3. uses
  4.   Forms,
  5.   Sfwu in 'SFWU.PAS' {Fsfw},
  6.   Gotow in '\SF\GOTOW.PAS' {gotowin},
  7.   About in '\SF\ABOUT.PAS' {AboutBox};
  8.  
  9. {$R *.RES}
  10.  
  11. begin
  12.   Application.HelpFile := 'sf.hlp';
  13.   Application.CreateForm(TFsfw, Fsfw);
  14.   Application.CreateForm(Tgotowin, gotowin);
  15.   Application.CreateForm(TAboutBox, AboutBox);
  16.   Application.Run;
  17. end.
  18.