📄 wage.~dpr
字号:
program wage;
uses
Forms,
main in 'main.pas' {mainform},
check in 'check.pas' {checkform},
ope in 'ope.pas' {opeform},
pass in 'pass.pas' {passform},
tax in 'tax.pas' {taxform},
salary in 'salary.pas' {salaryform},
change in 'change.pas' {changeform},
seek in 'seek.pas' {seekform},
history in 'history.pas' {historyform},
pwage in 'pwage.pas' {pwageform};
{$R *.res}
begin
Application.Initialize;
Application.CreateForm(Tmainform, mainform);
Application.CreateForm(Tcheckform, checkform);
Application.CreateForm(Topeform, opeform);
Application.CreateForm(Tpassform, passform);
Application.CreateForm(Ttaxform, taxform);
Application.CreateForm(Tsalaryform, salaryform);
Application.CreateForm(Tchangeform, changeform);
Application.CreateForm(Tseekform, seekform);
Application.CreateForm(Thistoryform, historyform);
Application.CreateForm(Tpwageform, pwageform);
Application.Run;
end.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -