📄 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},
FormInput in 'FormInput.pas' {input},
FormOutput in 'FormOutput.pas' {output};
{$R *.res}
begin
Application.Initialize;
Application.Title := '进销存管理系统';
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(Tinput, input);
Application.CreateForm(Toutput, output);
Application.Run;
end.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -