pdsserver.dpr
来自「delphi2009 部分中文资料,源程序等」· DPR 代码 · 共 17 行
DPR
17 行
program pDSServer;
uses
Forms,
ServerMainForm in 'ServerMainForm.pas' {Form17},
uServerModule in 'uServerModule.pas' {DSServerModule1: TDSServerModule};
{$R *.res}
begin
Application.Initialize;
Application.MainFormOnTaskbar := True;
Application.CreateForm(TForm17, Form17);
Application.CreateForm(TDSServerModule1, DSServerModule1);
Application.Run;
end.
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?