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

📄 wpmfish.pas

📁 关于利用DELPHI来进行企业级方案解决的著作的附书源码
💻 PAS
字号:

unit wpmFish;

interface

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

type
  TFishPage = class(TWebPageModule)
    AdapterPageProducer: TAdapterPageProducer;
    AdapterForm1: TAdapterForm;
    AdapterFieldGroup1: TAdapterFieldGroup;
    AdapterCommandGroup1: TAdapterCommandGroup;
    FldSpeciesNo: TAdapterDisplayField;
    FldCategory: TAdapterDisplayField;
    FldCommon_Name: TAdapterDisplayField;
    FldSpeciesName: TAdapterDisplayField;
    FldLengthcm: TAdapterDisplayField;
    FldLength_In: TAdapterDisplayField;
    FldNotes: TAdapterDisplayField;
    FldGraphic: TAdapterDisplayField;
    AdapterDisplayField: TAdapterDisplayField;
    CmdDeleteRow: TAdapterActionButton;
    CmdFirstRow: TAdapterActionButton;
    CmdPrevRow: TAdapterActionButton;
    CmdNextRow: TAdapterActionButton;
    CmdLastRow: TAdapterActionButton;
    CmdEditRow: TAdapterActionButton;
    CmdBrowseRow: TAdapterActionButton;
    CmdNewRow: TAdapterActionButton;
    CmdCancel: TAdapterActionButton;
    CmdApply: TAdapterActionButton;
    CmdRefreshRow: TAdapterActionButton;
  private
    { Private declarations }
  public
    { Public declarations }
  end;

  function FishPage: TFishPage;

implementation

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

uses WebReq, WebCntxt, WebFact, Variants, wdmFish;

function FishPage: TFishPage;
begin
  Result := TFishPage(WebContext.FindModuleClass(TFishPage));
end;

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

end.

⌨️ 快捷键说明

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