home *** CD-ROM | disk | FTP | other *** search
/ PC World 2000 October / PCWorld_2000-10_cd2.bin / Borland / interbase / IBConsole_src.ZIP / ibconsole / frmuCommDiag.dfm / frmuCommDiag.txt
Text File  |  2000-06-08  |  9KB  |  377 lines

  1. object frmCommDiag: TfrmCommDiag
  2.   Left = 347
  3.   Top = 288
  4.   BorderIcons = [biSystemMenu, biHelp]
  5.   BorderStyle = bsSingle
  6.   Caption = 'Communication Diagnostics'
  7.   ClientHeight = 453
  8.   ClientWidth = 341
  9.   Color = clBtnFace
  10.   Font.Charset = DEFAULT_CHARSET
  11.   Font.Color = clWindowText
  12.   Font.Height = -11
  13.   Font.Name = 'MS Sans Serif'
  14.   Font.Style = []
  15.   OldCreateOrder = False
  16.   Position = poScreenCenter
  17.   Scaled = False
  18.   OnCreate = FormCreate
  19.   OnDestroy = FormDestroy
  20.   OnKeyPress = FormKeyPress
  21.   PixelsPerInch = 96
  22.   TextHeight = 13
  23.   object pgcDiagnostics: TPageControl
  24.     Left = 0
  25.     Top = 0
  26.     Width = 341
  27.     Height = 416
  28.     ActivePage = tabDBConnection
  29.     Align = alClient
  30.     TabOrder = 0
  31.     object tabDBConnection: TTabSheet
  32.       Caption = 'DB Connection'
  33.       object lblDBResults: TLabel
  34.         Left = 6
  35.         Top = 240
  36.         Width = 38
  37.         Height = 13
  38.         Caption = '&Results:'
  39.         FocusControl = memDBResults
  40.       end
  41.       object memDBResults: TMemo
  42.         Left = 6
  43.         Top = 258
  44.         Width = 324
  45.         Height = 127
  46.         ReadOnly = True
  47.         ScrollBars = ssBoth
  48.         TabOrder = 2
  49.         WordWrap = False
  50.       end
  51.       object gbDatabaseInfo: TGroupBox
  52.         Left = 6
  53.         Top = 114
  54.         Width = 324
  55.         Height = 115
  56.         Caption = ' Database Information'
  57.         TabOrder = 1
  58.         object lblDatabase: TLabel
  59.           Left = 12
  60.           Top = 24
  61.           Width = 49
  62.           Height = 13
  63.           Caption = '&Database:'
  64.           FocusControl = edtDatabase
  65.         end
  66.         object lblUsername: TLabel
  67.           Left = 12
  68.           Top = 54
  69.           Width = 56
  70.           Height = 13
  71.           Caption = '&User Name:'
  72.           FocusControl = edtUsername
  73.         end
  74.         object lblPassword: TLabel
  75.           Left = 12
  76.           Top = 84
  77.           Width = 49
  78.           Height = 13
  79.           Caption = '&Password:'
  80.           FocusControl = edtPassword
  81.         end
  82.         object btnSelDB: TButton
  83.           Left = 271
  84.           Top = 24
  85.           Width = 21
  86.           Height = 21
  87.           Hint = 'Select database'
  88.           Caption = '...'
  89.           TabOrder = 1
  90.           OnClick = btnSelDBClick
  91.         end
  92.         object edtUsername: TEdit
  93.           Left = 91
  94.           Top = 54
  95.           Width = 199
  96.           Height = 21
  97.           MaxLength = 128
  98.           TabOrder = 2
  99.         end
  100.         object edtPassword: TEdit
  101.           Left = 91
  102.           Top = 84
  103.           Width = 199
  104.           Height = 21
  105.           MaxLength = 32
  106.           PasswordChar = '*'
  107.           TabOrder = 3
  108.         end
  109.         object edtDatabase: TEdit
  110.           Left = 91
  111.           Top = 24
  112.           Width = 181
  113.           Height = 21
  114.           ParentShowHint = False
  115.           ShowHint = True
  116.           TabOrder = 0
  117.           OnChange = edtDatabaseChange
  118.         end
  119.       end
  120.       object gbDBServerInfo: TGroupBox
  121.         Left = 6
  122.         Top = 6
  123.         Width = 322
  124.         Height = 103
  125.         Caption = ' Server Information'
  126.         TabOrder = 0
  127.         object lblServerName: TLabel
  128.           Left = 12
  129.           Top = 48
  130.           Width = 65
  131.           Height = 13
  132.           Caption = '&Server Name:'
  133.           FocusControl = cbDBServer
  134.         end
  135.         object lblProtocol: TLabel
  136.           Left = 174
  137.           Top = 48
  138.           Width = 85
  139.           Height = 13
  140.           Caption = '&Network Protocol:'
  141.           FocusControl = cbProtocol
  142.         end
  143.         object cbProtocol: TComboBox
  144.           Left = 174
  145.           Top = 66
  146.           Width = 103
  147.           Height = 21
  148.           Style = csDropDownList
  149.           ItemHeight = 13
  150.           TabOrder = 3
  151.           Items.Strings = (
  152.             'TCP/IP'
  153.             'NetBEUI'
  154.             'SPX')
  155.         end
  156.         object rbLocalServer: TRadioButton
  157.           Left = 36
  158.           Top = 24
  159.           Width = 107
  160.           Height = 17
  161.           Caption = '&Local Server'
  162.           TabOrder = 0
  163.           OnClick = rbLocalServerClick
  164.         end
  165.         object rbRemoteServer: TRadioButton
  166.           Left = 166
  167.           Top = 24
  168.           Width = 116
  169.           Height = 17
  170.           Caption = 'R&emote Server'
  171.           TabOrder = 1
  172.           OnClick = rbRemoteServerClick
  173.         end
  174.         object cbDBServer: TComboBox
  175.           Left = 13
  176.           Top = 66
  177.           Width = 145
  178.           Height = 21
  179.           ItemHeight = 13
  180.           TabOrder = 2
  181.           OnClick = cbDBServerClick
  182.         end
  183.       end
  184.     end
  185.     object tabTCPIP: TTabSheet
  186.       Caption = 'TCP/IP'
  187.       object lblWinSockResults: TLabel
  188.         Left = 6
  189.         Top = 90
  190.         Width = 61
  191.         Height = 13
  192.         AutoSize = False
  193.         Caption = '&Results:'
  194.         FocusControl = memTCPIPResults
  195.       end
  196.       object memTCPIPResults: TMemo
  197.         Left = 6
  198.         Top = 108
  199.         Width = 322
  200.         Height = 277
  201.         ReadOnly = True
  202.         ScrollBars = ssBoth
  203.         TabOrder = 1
  204.         WordWrap = False
  205.       end
  206.       object gbTCPIPServerInfo: TGroupBox
  207.         Left = 6
  208.         Top = 6
  209.         Width = 317
  210.         Height = 73
  211.         Caption = ' Server Information'
  212.         TabOrder = 0
  213.         object lblWinsockServer: TLabel
  214.           Left = 12
  215.           Top = 18
  216.           Width = 43
  217.           Height = 13
  218.           AutoSize = False
  219.           Caption = '&Host:'
  220.           FocusControl = cbTCPIPServer
  221.         end
  222.         object lblService: TLabel
  223.           Left = 220
  224.           Top = 18
  225.           Width = 67
  226.           Height = 13
  227.           AutoSize = False
  228.           Caption = '&Service:'
  229.           FocusControl = cbService
  230.         end
  231.         object cbService: TComboBox
  232.           Left = 220
  233.           Top = 36
  234.           Width = 79
  235.           Height = 21
  236.           Style = csDropDownList
  237.           ItemHeight = 13
  238.           TabOrder = 1
  239.           Items.Strings = (
  240.             '21'
  241.             'ftp'
  242.             '3050'
  243.             'gds_db'
  244.             'ping')
  245.         end
  246.         object cbTCPIPServer: TComboBox
  247.           Left = 12
  248.           Top = 37
  249.           Width = 175
  250.           Height = 24
  251.           ItemHeight = 0
  252.           TabOrder = 0
  253.         end
  254.       end
  255.     end
  256.     object tabNetBEUI: TTabSheet
  257.       Caption = 'NetBEUI'
  258.       object lblNetBeuiResults: TLabel
  259.         Left = 6
  260.         Top = 78
  261.         Width = 55
  262.         Height = 13
  263.         AutoSize = False
  264.         Caption = '&Results:'
  265.         FocusControl = memNetBeuiResults
  266.       end
  267.       object memNetBeuiResults: TMemo
  268.         Left = 6
  269.         Top = 96
  270.         Width = 322
  271.         Height = 289
  272.         ReadOnly = True
  273.         ScrollBars = ssBoth
  274.         TabOrder = 1
  275.         WordWrap = False
  276.       end
  277.       object gbNetBEUIServerInfo: TGroupBox
  278.         Left = 6
  279.         Top = 6
  280.         Width = 317
  281.         Height = 61
  282.         Caption = ' Server Information'
  283.         TabOrder = 0
  284.         object lblNetBEUIServer: TLabel
  285.           Left = 12
  286.           Top = 24
  287.           Width = 65
  288.           Height = 13
  289.           Caption = '&Server Name:'
  290.           FocusControl = cbNetBEUIServer
  291.         end
  292.         object cbNetBEUIServer: TComboBox
  293.           Left = 121
  294.           Top = 24
  295.           Width = 185
  296.           Height = 24
  297.           ItemHeight = 0
  298.           TabOrder = 0
  299.         end
  300.       end
  301.     end
  302.     object tabSPX: TTabSheet
  303.       Caption = 'SPX'
  304.       object lblSPXResults: TLabel
  305.         Left = 6
  306.         Top = 78
  307.         Width = 49
  308.         Height = 13
  309.         AutoSize = False
  310.         Caption = '&Results:'
  311.         FocusControl = memSPXResults
  312.       end
  313.       object gbNovellServerInfo: TGroupBox
  314.         Left = 6
  315.         Top = 6
  316.         Width = 317
  317.         Height = 61
  318.         Caption = ' Server Information'
  319.         TabOrder = 0
  320.         object lblSPXServer: TLabel
  321.           Left = 12
  322.           Top = 24
  323.           Width = 65
  324.           Height = 13
  325.           Caption = '&Server Name:'
  326.           FocusControl = cbSPXServer
  327.         end
  328.         object cbSPXServer: TComboBox
  329.           Left = 121
  330.           Top = 24
  331.           Width = 185
  332.           Height = 21
  333.           ItemHeight = 0
  334.           TabOrder = 0
  335.         end
  336.       end
  337.       object memSPXResults: TMemo
  338.         Left = 6
  339.         Top = 96
  340.         Width = 322
  341.         Height = 289
  342.         ReadOnly = True
  343.         ScrollBars = ssBoth
  344.         TabOrder = 1
  345.         WordWrap = False
  346.       end
  347.     end
  348.   end
  349.   object pnlButtonBar: TPanel
  350.     Left = 0
  351.     Top = 416
  352.     Width = 341
  353.     Height = 37
  354.     Align = alBottom
  355.     TabOrder = 1
  356.     object btnTest: TButton
  357.       Left = 183
  358.       Top = 6
  359.       Width = 75
  360.       Height = 25
  361.       Caption = '&Test'
  362.       Default = True
  363.       TabOrder = 0
  364.       OnClick = btnTestClick
  365.     end
  366.     object btnCancel: TButton
  367.       Left = 261
  368.       Top = 6
  369.       Width = 75
  370.       Height = 25
  371.       Caption = '&Cancel'
  372.       TabOrder = 1
  373.       OnClick = btnCancelClick
  374.     end
  375.   end
  376. end
  377.