Unit3.dfm
上传用户:lzd18710
上传日期:2009-11-26
资源大小:3595k
文件大小:2k
源码类别:

通讯编程

开发平台:

Visual Basic

  1. object Form3: TForm3
  2.   Left = 295
  3.   Top = 155
  4.   BorderStyle = bsDialog
  5.   Caption = 'Connect to Device'
  6.   ClientHeight = 148
  7.   ClientWidth = 298
  8.   Color = clBtnFace
  9.   Font.Charset = DEFAULT_CHARSET
  10.   Font.Color = clWindowText
  11.   Font.Height = -11
  12.   Font.Name = 'MS Sans Serif'
  13.   Font.Style = []
  14.   OldCreateOrder = False
  15.   Position = poMainFormCenter
  16.   PixelsPerInch = 96
  17.   TextHeight = 13
  18.   object Label1: TLabel
  19.     Left = 16
  20.     Top = 76
  21.     Width = 49
  22.     Height = 13
  23.     Caption = 'COM Port:'
  24.   end
  25.   object Label2: TLabel
  26.     Left = 16
  27.     Top = 100
  28.     Width = 51
  29.     Height = 13
  30.     Caption = 'Device ID:'
  31.   end
  32.   object Label3: TLabel
  33.     Left = 16
  34.     Top = 124
  35.     Width = 54
  36.     Height = 13
  37.     Caption = 'Baud Rate:'
  38.   end
  39.   object rgrpConnect: TRadioGroup
  40.     Left = 16
  41.     Top = 8
  42.     Width = 161
  43.     Height = 57
  44.     Caption = ' Connect Method '
  45.     ItemIndex = 0
  46.     Items.Strings = (
  47.       'COM Port(RS232/RS485)'
  48.       'Ethernet')
  49.     TabOrder = 0
  50.     OnClick = rgrpConnectClick
  51.   end
  52.   object Edit1: TEdit
  53.     Left = 76
  54.     Top = 72
  55.     Width = 102
  56.     Height = 21
  57.     TabOrder = 1
  58.     Text = 'COM1'
  59.   end
  60.   object Edit2: TEdit
  61.     Left = 76
  62.     Top = 96
  63.     Width = 102
  64.     Height = 21
  65.     TabOrder = 2
  66.     Text = '1'
  67.   end
  68.   object Edit3: TEdit
  69.     Left = 76
  70.     Top = 120
  71.     Width = 102
  72.     Height = 21
  73.     TabOrder = 3
  74.     Text = '115200'
  75.   end
  76.   object BitBtn1: TBitBtn
  77.     Left = 208
  78.     Top = 16
  79.     Width = 75
  80.     Height = 25
  81.     TabOrder = 4
  82.     Kind = bkOK
  83.   end
  84.   object BitBtn2: TBitBtn
  85.     Left = 208
  86.     Top = 56
  87.     Width = 75
  88.     Height = 25
  89.     TabOrder = 5
  90.     Kind = bkCancel
  91.   end
  92. end