📄 qhyx.dpr
字号:
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -