uServerMain.dfm
上传用户:cnjnqp
上传日期:2022-05-02
资源大小:194k
文件大小:2k
源码类别:

打印编程

开发平台:

Delphi

  1. object frmServerMain: TfrmServerMain
  2.   Left = 353
  3.   Top = 124
  4.   BorderIcons = [biSystemMenu, biMinimize]
  5.   BorderStyle = bsSingle
  6.   Caption = #25171#21360#26426#26381#21153#31471
  7.   ClientHeight = 299
  8.   ClientWidth = 353
  9.   Color = clBtnFace
  10.   Font.Charset = ANSI_CHARSET
  11.   Font.Color = clWindowText
  12.   Font.Height = -13
  13.   Font.Name = #23435#20307
  14.   Font.Style = []
  15.   OldCreateOrder = False
  16.   OnCreate = FormCreate
  17.   PixelsPerInch = 96
  18.   TextHeight = 13
  19.   object StatusBar: TStatusBar
  20.     Left = 0
  21.     Top = 280
  22.     Width = 353
  23.     Height = 19
  24.     Panels = <
  25.       item
  26.         Width = 50
  27.       end>
  28.     SimplePanel = False
  29.   end
  30.   object Panel1: TPanel
  31.     Left = 0
  32.     Top = 0
  33.     Width = 353
  34.     Height = 280
  35.     Align = alClient
  36.     BevelOuter = bvNone
  37.     Caption = 'Panel1'
  38.     TabOrder = 1
  39.     object GroupBox1: TGroupBox
  40.       Left = 7
  41.       Top = 8
  42.       Width = 337
  43.       Height = 265
  44.       Caption = #23458#25143#31471#21457#26469#30340#20449#24687#20869#23481
  45.       TabOrder = 0
  46.       object Memo1: TMemo
  47.         Left = 13
  48.         Top = 32
  49.         Width = 311
  50.         Height = 177
  51.         Color = clGradientActiveCaption
  52.         ReadOnly = True
  53.         TabOrder = 0
  54.       end
  55.     end
  56.   end
  57.   object ServerSocket: TServerSocket
  58.     Active = False
  59.     Port = 1025
  60.     ServerType = stNonBlocking
  61.     OnListen = ServerSocketListen
  62.     OnGetSocket = ServerSocketGetSocket
  63.     OnClientConnect = ServerSocketClientConnect
  64.     OnClientDisconnect = ServerSocketClientDisconnect
  65.     OnClientRead = ServerSocketClientRead
  66.     OnClientError = ServerSocketClientError
  67.     Left = 8
  68.     Top = 8
  69.   end
  70. end