⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 rdservermain.pas.~4~

📁 Indy9,客户端
💻 ~4~
字号:
unit rdServerMain;

interface

uses
  Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
  Dialogs, ExtCtrls, ComCtrls, ToolWin, IdBaseComponent, IdComponent,
  IdTCPServer, StdCtrls;

type
  TForm1 = class(TForm)
    ToolBar1: TToolBar;
    ScrollBox1: TScrollBox;
    Image1: TImage;
    ToolButton1: TToolButton;
    IdTCPServer1: TIdTCPServer;
    Memo1: TMemo;
    procedure ToolButton1Click(Sender: TObject);
  private
    { Private declarations }
  public
    { Public declarations }
  end;

var
  Form1: TForm1;

implementation

{$R *.dfm}

procedure TForm1.ToolButton1Click(Sender: TObject);
begin
  IdTCPServer1.DefaultPort := 1111;
  try
    IdTCPServer1.Active := True;
  except

  end;

end;

end.

⌨️ 快捷键说明

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