pclient.dpr

来自「delphi中的SOCKET使用的简单程序」· DPR 代码 · 共 17 行

DPR
17
字号
program PClient;

uses
  Forms,
  uClMain in 'uClMain.pas' {fmClient},
  uWaitMsg in 'uWaitMsg.pas' {fmWaitMsg},
  uSocketPub in 'uSocketPub.pas';

{$R *.res}

begin
  Application.Initialize;
  Application.CreateForm(TfmClient, fmClient);
  Application.CreateForm(TfmWaitMsg, fmWaitMsg);
  Application.Run;
end.

⌨️ 快捷键说明

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