📄 uedtedu.pas
字号:
unit uEdtEdu;
interface
uses
Windows, Messages, SysUtils, Classes, HTTPApp, WebModu, HTTPProd,
MidItems, WebForm, WebComp, CompProd, PagItems, SiteProd;
type
TEdtedu = class(TWebPageModule)
AdapterPageProducer: TAdapterPageProducer;
AdapterForm1: TAdapterForm;
LayoutGroup1: TLayoutGroup;
AdapterFieldGroup1: TAdapterFieldGroup;
AdapterFieldGroup2: TAdapterFieldGroup;
AdapterCommandGroup1: TAdapterCommandGroup;
CmdCancel: TAdapterActionButton;
CmdApply: TAdapterActionButton;
FldEMPID: TAdapterDisplayField;
FldEDUDEGREE: TAdapterDisplayField;
FldDEGREE: TAdapterDisplayField;
FldEDUSYSTEM: TAdapterDisplayField;
FldMAJOR: TAdapterDisplayField;
FldGRDTIME: TAdapterDisplayField;
FldGRDSCHOOL: TAdapterDisplayField;
FldNAME: TAdapterDisplayField;
private
{ Private declarations }
public
{ Public declarations }
end;
function Edtedu: TEdtedu;
implementation
{$R *.dfm} {*.html}
uses WebReq, WebCntxt, WebFact, Variants, wdmDB;
function Edtedu: TEdtedu;
begin
Result := TEdtedu(WebContext.FindModuleClass(TEdtedu));
end;
initialization
if WebRequestHandler <> nil then
WebRequestHandler.AddWebModuleFactory(TWebPageModuleFactory.Create(TEdtedu, TWebPageInfo.Create([wpLoginRequired], '.html', '', '新增教育信息'), crOnDemand, caCache));
end.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -