?? jxc.~dpr
字號:
program jxc;
uses
Forms,
FormLogin in 'FormLogin.pas' {login},
FormManage in 'FormManage.pas' {manage},
FormInfo in 'FormInfo.pas' {Info},
FormRights in 'FormRights.pas' {rights},
FormStore in 'FormStore.pas' {store},
FormReport in 'FormReport.pas' {report},
FormOutputOLD in 'FormOutputOLD.pas' {outputOLD},
FormInput in 'FormInput.pas' {input},
FormOutput in 'FormOutput.pas' {output};
{$R *.res}
begin
Application.Initialize;
Application.Title := '進銷存管理系統(tǒng)';
Application.CreateForm(Tlogin, login);
Application.CreateForm(Tmanage, manage);
Application.CreateForm(TInfo, Info);
Application.CreateForm(Trights, rights);
Application.CreateForm(Tstore, store);
Application.CreateForm(Treport, report);
Application.CreateForm(ToutputOLD, outputOLD);
Application.CreateForm(Tinput, input);
Application.CreateForm(Toutput, output);
Application.Run;
end.
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -