template.dpr

来自「企业ERP管理系统」· DPR 代码 · 共 29 行

DPR
29
字号
program Template;

uses
  Forms,
  WSBrowse in 'WSBrowse.pas' {WSBrowseForm},
  WSBrSales in 'WSBrSales.pas',
  WSConsts in 'WSConsts.pas',
  WSCstFrm in 'WSCstFrm.pas' {WSCustomForm},
  WSCustomRpt in 'WSCustomRpt.pas',
  WSDM in 'WSDM.pas' {WSDataModule: TDataModule},
  WSEdit in 'WSEdit.pas' {WSEditForm},
  WSEdSales in 'WSEdSales.pas',
  WSStandardBrowse in 'WSStandardBrowse.pas',
  WSStandardEdit in 'WSStandardEdit.pas' {WSStandardEditForm},
  WSUtils in 'WSUtils.pas',
  WSVoucherBrowse in 'WSVoucherBrowse.pas' {WSVoucherBrowseForm},
  WSVoucherEdit in 'WSVoucherEdit.pas',
  WSVoucherRpt in 'WSVoucherRpt.pas',
  CommonDM in 'CommonDM.pas' {CommonData: TDataModule};

{$R *.res}

begin
  Application.Initialize;
  Application.CreateForm(TWSDataModule, WSDataModule);
  Application.CreateForm(TCommonData, CommonData);
  Application.Run;
end.

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?