dbattachserver.~dpr
来自「Delphi 7组件与分布式应用开发源码,介绍了基础的组件应用实例」· ~DPR 代码 · 共 19 行
~DPR
19 行
program DBAttachServer;
{$APPTYPE CONSOLE}
uses
WebBroker,
CGIApp,
DBAttachUnit in 'D:\Program Files\Borland\Delphi7\Demos\WebServices\SOAPAttachments\Server\DBAttachUnit.pas' {WebModule1: TWebModule},
DBAttachmentsImpl in 'D:\Program Files\Borland\Delphi7\Demos\WebServices\SOAPAttachments\Server\DBAttachmentsImpl.pas',
DBAttachmentsIntf in 'D:\Program Files\Borland\Delphi7\Demos\WebServices\SOAPAttachments\Server\DBAttachmentsIntf.pas';
{$R *.res}
begin
Application.Initialize;
Application.CreateForm(TWebModule1, WebModule1);
Application.Run;
end.
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?