home *** CD-ROM | disk | FTP | other *** search
- program Sfw;
-
- uses
- Forms,
- Sfwu in 'SFWU.PAS' {Fsfw},
- Gotow in '\SF\GOTOW.PAS' {gotowin},
- About in '\SF\ABOUT.PAS' {AboutBox};
-
- {$R *.RES}
-
- begin
- Application.HelpFile := 'sf.hlp';
- Application.CreateForm(TFsfw, Fsfw);
- Application.CreateForm(Tgotowin, gotowin);
- Application.CreateForm(TAboutBox, AboutBox);
- Application.Run;
- end.
-