qhyx.dpr

来自「闭路电视收费系统」· DPR 代码 · 共 29 行

DPR
29
字号
program qhyx;

uses
  Forms,
  main in 'main.pas' {FormMain},
  DM in 'DM.pas' {DataM: TDataModule},
  Lookup in 'Lookup.pas' {FormLookup},
  NewUserPrint in 'NewUserPrint.pas' {NewUserP},
  FeePrint in 'FeePrint.pas' {FeeP},
  FeePrint1 in 'FeePrint1.pas' {FeeP1},
  LookupPrint in 'LookupPrint.pas' {LookupP},
  RePrintDlg in 'RePrintDlg.pas' {FormRePrintDlg};

{$R *.RES}

begin
  Application.Initialize;
  Application.Title := '清华永新卡用户管理系统';
  Application.CreateForm(TFormMain, FormMain);
  Application.CreateForm(TDataM, DataM);
  Application.CreateForm(TFormLookup, FormLookup);
  Application.CreateForm(TNewUserP, NewUserP);
  Application.CreateForm(TFeeP, FeeP);
  Application.CreateForm(TFeeP1, FeeP1);
  Application.CreateForm(TLookupP, LookupP);
  Application.CreateForm(TFormRePrintDlg, FormRePrintDlg);
  Application.Run;
end.

⌨️ 快捷键说明

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