uServerBrowser.dfm
上传用户:fuyouda
上传日期:2015-08-19
资源大小:6876k
文件大小:2k
源码类别:

家庭/个人应用

开发平台:

Visual C++

  1. object ServerBrowser: TServerBrowser
  2.   Left = 387
  3.   Top = 448
  4.   BorderStyle = bsDialog
  5.   Caption = 'Server Browser'
  6.   ClientHeight = 221
  7.   ClientWidth = 347
  8.   Color = clBtnFace
  9.   Font.Charset = DEFAULT_CHARSET
  10.   Font.Color = clWindowText
  11.   Font.Height = -12
  12.   Font.Name = #23435#20307
  13.   Font.Style = []
  14.   OldCreateOrder = True
  15.   Position = poMainFormCenter
  16.   OnCreate = FormCreate
  17.   OnDestroy = FormDestroy
  18.   PixelsPerInch = 96
  19.   TextHeight = 12
  20.   object Label2: TLabel
  21.     Left = 16
  22.     Top = 48
  23.     Width = 81
  24.     Height = 13
  25.     AutoSize = False
  26.     Caption = 'Server Name'
  27.   end
  28.   object Label1: TLabel
  29.     Left = 16
  30.     Top = 8
  31.     Width = 73
  32.     Height = 17
  33.     AutoSize = False
  34.     Caption = 'Server Node'
  35.   end
  36.   object OKBtn: TButton
  37.     Left = 256
  38.     Top = 16
  39.     Width = 73
  40.     Height = 20
  41.     Caption = 'OK'
  42.     Default = True
  43.     ModalResult = 1
  44.     TabOrder = 0
  45.   end
  46.   object CancelBtn: TButton
  47.     Left = 256
  48.     Top = 38
  49.     Width = 73
  50.     Height = 20
  51.     Cancel = True
  52.     Caption = 'Cancel'
  53.     ModalResult = 2
  54.     TabOrder = 1
  55.   end
  56.   object RefreshBtn: TButton
  57.     Left = 256
  58.     Top = 64
  59.     Width = 73
  60.     Height = 20
  61.     Caption = 'Refresh'
  62.     TabOrder = 2
  63.     OnClick = RefreshBtnClick
  64.   end
  65.   object Servers: TListBox
  66.     Left = 16
  67.     Top = 112
  68.     Width = 313
  69.     Height = 97
  70.     ItemHeight = 12
  71.     TabOrder = 3
  72.     OnClick = ServersClick
  73.     OnDblClick = ServersDblClick
  74.   end
  75.   object rbV1: TRadioButton
  76.     Left = 208
  77.     Top = 88
  78.     Width = 49
  79.     Height = 17
  80.     Caption = '1.0'
  81.     TabOrder = 4
  82.   end
  83.   object rbV2: TRadioButton
  84.     Left = 272
  85.     Top = 88
  86.     Width = 57
  87.     Height = 17
  88.     Caption = '2.0'
  89.     Checked = True
  90.     TabOrder = 5
  91.     TabStop = True
  92.   end
  93.   object ServerName: TEdit
  94.     Left = 16
  95.     Top = 64
  96.     Width = 233
  97.     Height = 20
  98.     TabOrder = 6
  99.   end
  100.   object ServerNode: TEdit
  101.     Left = 16
  102.     Top = 24
  103.     Width = 233
  104.     Height = 20
  105.     TabOrder = 7
  106.   end
  107. end