unit1.pas

来自「Delphi面向对象编程思想附书源码 好用哦!」· PAS 代码 · 共 30 行

PAS
30
字号
unit Unit1;

interface

uses
  SysUtils, Classes, Forms, Controls, StdCtrls;

type
  TForm1 = class(TForm)
    Label1: TLabel;
  private
    { Private declarations }
  public
    { Public declarations }
  end;

var
  Form1: TForm1;

implementation

uses SockApp;

{$R *.dfm}

initialization
  TWebAppSockObjectFactory.Create('UserWebSrv')

end.
 

⌨️ 快捷键说明

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