home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
QBasic & Borland Pascal & C
/
Delphi5.iso
/
Runimage
/
Delphi50
/
Demos
/
Coolstuf
/
WEBBROWS.DPR
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1999-08-11
|
231 b
|
15 lines
program Webbrows;
uses
Forms,
main in 'Main.pas' {MainForm},
About in 'About.pas' {AboutBox};
{$R *.RES}
begin
Application.Initialize;
Application.CreateForm(TMainForm, MainForm);
Application.Run;
end.