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