home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
QBasic & Borland Pascal & C
/
Delphi5.iso
/
Runimage
/
Delphi50
/
Demos
/
Midas
/
InternetExpress
/
CustomerList
/
customerlist.dpr
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
|
288 b
|
17 lines
program CustomerList;
{$APPTYPE CONSOLE}
uses
WebBroker,
CGIApp,
CustomerListWebModule in 'CustomerListWebModule.pas' {WebModule1: TWebModule};
{$R *.RES}
begin
Application.Initialize;
Application.CreateForm(TWebModule1, WebModule1);
Application.Run;
end.