home *** CD-ROM | disk | FTP | other *** search
/ QBasic & Borland Pascal & C / Delphi5.iso / Runimage / Delphi50 / Bin / DCLIB50.BPL / 0 / RCDATA / TIBDATABASEEDITFORM / TIBDATABASEEDITFORM.txt
Encoding:
Text File  |  1999-08-11  |  5.2 KB  |  273 lines

  1. object IBDatabaseEditForm: TIBDatabaseEditForm
  2.   Left = 487
  3.   Top = 125
  4.   ActiveControl = DatabaseName
  5.   BorderStyle = bsDialog
  6.   BorderWidth = 5
  7.   Caption = 'Database Component Editor'
  8.   ClientHeight = 412
  9.   ClientWidth = 409
  10.   Color = clBtnFace
  11.   ParentFont = True
  12.   HelpFile = 'ibx.hlp'
  13.   OldCreateOrder = False
  14.   Position = poScreenCenter
  15.   OnCreate = FormCreate
  16.   PixelsPerInch = 120
  17.   TextHeight = 16
  18.   object Panel1: TPanel
  19.     Left = 0
  20.     Top = 368
  21.     Width = 409
  22.     Height = 44
  23.     Align = alBottom
  24.     BevelOuter = bvNone
  25.     TabOrder = 2
  26.     object OKBtn: TButton
  27.       Left = 74
  28.       Top = 11
  29.       Width = 92
  30.       Height = 30
  31.       Caption = 'OK'
  32.       Default = True
  33.       TabOrder = 2
  34.       OnClick = OKBtnClick
  35.     end
  36.     object CancelBtn: TButton
  37.       Left = 189
  38.       Top = 11
  39.       Width = 92
  40.       Height = 30
  41.       Cancel = True
  42.       Caption = 'Cancel'
  43.       ModalResult = 2
  44.       TabOrder = 0
  45.     end
  46.     object HelpBtn: TButton
  47.       Left = 303
  48.       Top = 11
  49.       Width = 92
  50.       Height = 30
  51.       Caption = '&Help'
  52.       TabOrder = 1
  53.       OnClick = HelpBtnClick
  54.     end
  55.   end
  56.   object GroupBox2: TGroupBox
  57.     Left = 0
  58.     Top = 0
  59.     Width = 409
  60.     Height = 137
  61.     Align = alTop
  62.     Caption = 'Connection'
  63.     TabOrder = 0
  64.     object Label1: TLabel
  65.       Left = 30
  66.       Top = 83
  67.       Width = 63
  68.       Height = 16
  69.       Caption = '&Database:'
  70.       FocusControl = DatabaseName
  71.     end
  72.     object Label7: TLabel
  73.       Left = 30
  74.       Top = 40
  75.       Width = 43
  76.       Height = 16
  77.       Caption = '&Server:'
  78.       Enabled = False
  79.       FocusControl = ServerName
  80.     end
  81.     object Label8: TLabel
  82.       Left = 168
  83.       Top = 40
  84.       Width = 53
  85.       Height = 16
  86.       Caption = '&Protocol:'
  87.       Enabled = False
  88.       FocusControl = Protocol
  89.     end
  90.     object DatabaseName: TEdit
  91.       Left = 30
  92.       Top = 99
  93.       Width = 361
  94.       Height = 24
  95.       TabOrder = 5
  96.     end
  97.     object LocalRbtn: TRadioButton
  98.       Left = 30
  99.       Top = 18
  100.       Width = 59
  101.       Height = 21
  102.       Caption = '&Local'
  103.       Checked = True
  104.       TabOrder = 0
  105.       TabStop = True
  106.       OnClick = LocalRbtnClick
  107.     end
  108.     object RemoteRbtn: TRadioButton
  109.       Left = 110
  110.       Top = 18
  111.       Width = 68
  112.       Height = 21
  113.       Caption = '&Remote'
  114.       TabOrder = 1
  115.       OnClick = RemoteRbtnClick
  116.     end
  117.     object Browse: TButton
  118.       Left = 299
  119.       Top = 56
  120.       Width = 92
  121.       Height = 30
  122.       Caption = '&Browse'
  123.       TabOrder = 2
  124.       OnClick = BrowseClick
  125.     end
  126.     object ServerName: TEdit
  127.       Left = 30
  128.       Top = 56
  129.       Width = 115
  130.       Height = 24
  131.       Enabled = False
  132.       TabOrder = 3
  133.     end
  134.     object Protocol: TComboBox
  135.       Left = 167
  136.       Top = 56
  137.       Width = 115
  138.       Height = 24
  139.       Enabled = False
  140.       ItemHeight = 16
  141.       Items.Strings = (
  142.         'TCP'
  143.         'NamedPipe'
  144.         'SPX')
  145.       TabOrder = 4
  146.     end
  147.   end
  148.   object GroupBox1: TGroupBox
  149.     Left = 0
  150.     Top = 137
  151.     Width = 409
  152.     Height = 231
  153.     Align = alClient
  154.     Caption = 'Database Parameters'
  155.     TabOrder = 1
  156.     object Label2: TLabel
  157.       Left = 30
  158.       Top = 22
  159.       Width = 72
  160.       Height = 16
  161.       Caption = '&User Name:'
  162.       FocusControl = UserName
  163.     end
  164.     object Label3: TLabel
  165.       Left = 30
  166.       Top = 65
  167.       Width = 63
  168.       Height = 16
  169.       Caption = 'Pass&word:'
  170.       FocusControl = Password
  171.     end
  172.     object Label4: TLabel
  173.       Left = 30
  174.       Top = 109
  175.       Width = 58
  176.       Height = 16
  177.       Caption = 'S&QLRole:'
  178.       FocusControl = SQLRole
  179.     end
  180.     object Label5: TLabel
  181.       Left = 167
  182.       Top = 23
  183.       Width = 51
  184.       Height = 16
  185.       Caption = 'Se&ttings:'
  186.       FocusControl = DatabaseParams
  187.     end
  188.     object Label6: TLabel
  189.       Left = 30
  190.       Top = 151
  191.       Width = 84
  192.       Height = 16
  193.       Caption = '&Character Set:'
  194.       FocusControl = CharacterSet
  195.     end
  196.     object UserName: TEdit
  197.       Left = 30
  198.       Top = 39
  199.       Width = 115
  200.       Height = 24
  201.       TabOrder = 0
  202.       OnExit = UserNameChange
  203.     end
  204.     object Password: TEdit
  205.       Left = 30
  206.       Top = 82
  207.       Width = 115
  208.       Height = 24
  209.       TabOrder = 1
  210.       OnExit = PasswordChange
  211.     end
  212.     object SQLRole: TEdit
  213.       Left = 30
  214.       Top = 126
  215.       Width = 115
  216.       Height = 24
  217.       TabOrder = 2
  218.       OnExit = SQLRoleChange
  219.     end
  220.     object DatabaseParams: TMemo
  221.       Left = 167
  222.       Top = 40
  223.       Width = 226
  224.       Height = 153
  225.       TabOrder = 4
  226.     end
  227.     object LoginPrompt: TCheckBox
  228.       Left = 30
  229.       Top = 202
  230.       Width = 123
  231.       Height = 17
  232.       Caption = 'Lo&gin Prompt'
  233.       TabOrder = 5
  234.     end
  235.     object CharacterSet: TComboBox
  236.       Left = 30
  237.       Top = 168
  238.       Width = 115
  239.       Height = 24
  240.       ItemHeight = 16
  241.       Items.Strings = (
  242.         'None'
  243.         'ASCII'
  244.         'BIG_5'
  245.         'CYRL'
  246.         'DOS437'
  247.         'DOS850'
  248.         'DOS852'
  249.         'DOS857'
  250.         'DOS860'
  251.         'DOS861'
  252.         'DOS863'
  253.         'DOS865'
  254.         'EUCJ_0208'
  255.         'GB_2312'
  256.         'ISO8859_1'
  257.         'KSC_5601'
  258.         'NEXT'
  259.         'OCTETS'
  260.         'SJIS_0208'
  261.         'UNICODE_FSS'
  262.         'WIN1250'
  263.         'WIN1251'
  264.         'WIN1252'
  265.         'WIN1253'
  266.         'WIN1254')
  267.       TabOrder = 3
  268.       Text = 'None'
  269.       OnExit = CharacterSetChange
  270.     end
  271.   end
  272. end
  273.