⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 unit4.pas

📁 DELPHI7编程百例 DELPHI7编程百例 DELPHI7编程百例
💻 PAS
字号:

unit Unit4;

interface

uses
  Windows, Messages, SysUtils, Classes, HTTPApp, WebModu, HTTPProd,
  WebForm, WebComp, MidItems, CompProd, PagItems, SiteProd;

type
  TAdapterPageProducerPage4 = class(TWebPageModule)
    AdapterPageProducer: TAdapterPageProducer;
    AdapterForm1: TAdapterForm;
    AdapterGrid1: TAdapterGrid;
  private
    { Private declarations }
  public
    { Public declarations }
  end;

  function AdapterPageProducerPage4: TAdapterPageProducerPage4;

implementation

{$R *.dfm}  {*.html}

uses WebReq, WebCntxt, WebFact, Variants, Unit3;

function AdapterPageProducerPage4: TAdapterPageProducerPage4;
begin
  Result := TAdapterPageProducerPage4(WebContext.FindModuleClass(TAdapterPageProducerPage4));
end;

initialization
  if WebRequestHandler <> nil then
    WebRequestHandler.AddWebModuleFactory(TWebPageModuleFactory.Create(TAdapterPageProducerPage4, TWebPageInfo.Create([wpPublished {, wpLoginRequired}], '.html'), crOnDemand, caCache));

end.

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -