home *** CD-ROM | disk | FTP | other *** search
/ c't freeware shareware 2001 January / CT_SW0101.ISO / pc / software / office / datenbk / bgbasic.exe / _SETUP.1 / BDEADMIN.EXE / RCDATA / TNEWDRIVERFORM / TNEWDRIVERFORM.txt
Text File  |  1999-06-21  |  2KB  |  99 lines

  1. object NewDriverForm: TNewDriverForm
  2.   Left = 105
  3.   Top = 373
  4.   BorderIcons = [biSystemMenu]
  5.   BorderStyle = bsDialog
  6.   Caption = 'New ODBC Driver'
  7.   ClientHeight = 280
  8.   ClientWidth = 251
  9.   Font.Charset = DEFAULT_CHARSET
  10.   Font.Color = clWindowText
  11.   Font.Height = -11
  12.   Font.Name = 'MS Sans Serif'
  13.   Font.Style = []
  14.   Position = poScreenCenter
  15.   OnCreate = FormCreate
  16.   PixelsPerInch = 96
  17.   TextHeight = 13
  18.   object GroupBox1: TGroupBox
  19.     Left = 8
  20.     Top = 8
  21.     Width = 233
  22.     Height = 49
  23.     Caption = 'Driver Name'
  24.     TabOrder = 0
  25.     object DriverName: TEdit
  26.       Left = 8
  27.       Top = 16
  28.       Width = 217
  29.       Height = 21
  30.       TabOrder = 0
  31.     end
  32.   end
  33.   object BtnOK: TButton
  34.     Left = 8
  35.     Top = 248
  36.     Width = 75
  37.     Height = 25
  38.     Caption = 'OK'
  39.     Default = True
  40.     ModalResult = 1
  41.     TabOrder = 1
  42.     OnClick = BtnOKClick
  43.   end
  44.   object BtnCancel: TButton
  45.     Left = 88
  46.     Top = 248
  47.     Width = 75
  48.     Height = 25
  49.     Cancel = True
  50.     Caption = 'Cancel'
  51.     ModalResult = 2
  52.     TabOrder = 2
  53.   end
  54.   object BtnHelp: TButton
  55.     Left = 168
  56.     Top = 248
  57.     Width = 75
  58.     Height = 25
  59.     Caption = '&Help'
  60.     TabOrder = 3
  61.     OnClick = BtnHelpClick
  62.   end
  63.   object GroupBox2: TGroupBox
  64.     Left = 8
  65.     Top = 64
  66.     Width = 233
  67.     Height = 49
  68.     Caption = 'ODBC Driver Name'
  69.     TabOrder = 4
  70.     object ComboODBCDriver: TComboBox
  71.       Left = 8
  72.       Top = 16
  73.       Width = 217
  74.       Height = 21
  75.       Style = csDropDownList
  76.       ItemHeight = 13
  77.       TabOrder = 0
  78.       OnChange = ComboODBCDriverChange
  79.     end
  80.   end
  81.   object GroupBox3: TGroupBox
  82.     Left = 8
  83.     Top = 120
  84.     Width = 233
  85.     Height = 113
  86.     Caption = 'Select Data Sources to Create Aliases'
  87.     TabOrder = 5
  88.     object ListDSN: TListBox
  89.       Left = 8
  90.       Top = 16
  91.       Width = 217
  92.       Height = 89
  93.       ItemHeight = 13
  94.       MultiSelect = True
  95.       TabOrder = 0
  96.     end
  97.   end
  98. end
  99.