project1.dpr
来自「是分布式粮库程序,是采用Delphi实现的」· DPR 代码 · 共 21 行
DPR
21 行
program Project1;
uses
Forms,
Unit1 in 'Unit1.pas' {frmsetup},
umakenotice in 'umakenotice.pas' {fmakenotice},
datamodule in 'datamodule.pas' {DataModule3: TDataModule},
umakesales in 'umakesales.pas' {fmakesale},
planid in 'planid.pas' {fplanid};
{$R *.res}
begin
Application.Initialize;
Application.CreateForm(TDataModule3, DataModule3);
Application.CreateForm(Tfmakesale, fmakesale);
Application.CreateForm(Tfmakenotice, fmakenotice);
Application.CreateForm(Tfplanid, fplanid);
Application.Run;
end.
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?