home *** CD-ROM | disk | FTP | other *** search
/ Chip 1997 April / Chip_1997-04_cd.bin / prezent / cb / data.z / QBINDDLG.DFM / QBINDDLG.txt
Text File  |  1997-01-16  |  2KB  |  119 lines

  1. object QueryParams: TQueryParams
  2.   Left = 242
  3.   Top = 122
  4.   ActiveControl = ParamList
  5.   BorderIcons = [biSystemMenu]
  6.   BorderStyle = bsDialog
  7.   Caption = 'Query'
  8.   ClientHeight = 191
  9.   ClientWidth = 354
  10.   Font.Color = clBlack
  11.   Font.Height = -11
  12.   Font.Name = 'MS Sans Serif'
  13.   Font.Style = []
  14.   PixelsPerInch = 96
  15.   Position = poScreenCenter
  16.   OnCreate = FormCreate
  17.   TextHeight = 13
  18.   object GroupBox1: TGroupBox
  19.     Left = 9
  20.     Top = 3
  21.     Width = 336
  22.     Height = 143
  23.     Caption = 'Define Parameters'
  24.     TabOrder = 0
  25.     object Label1: TLabel
  26.       Left = 8
  27.       Top = 20
  28.       Width = 80
  29.       Height = 13
  30.       Caption = '&Parameter name:'
  31.       FocusControl = ParamList
  32.     end
  33.     object Label2: TLabel
  34.       Left = 143
  35.       Top = 66
  36.       Width = 30
  37.       Height = 13
  38.       Caption = '&Value:'
  39.       FocusControl = ParamValue
  40.     end
  41.     object Label3: TLabel
  42.       Left = 143
  43.       Top = 40
  44.       Width = 49
  45.       Height = 13
  46.       Caption = '&Data type:'
  47.       FocusControl = TypeList
  48.     end
  49.     object ParamValue: TEdit
  50.       Left = 208
  51.       Top = 62
  52.       Width = 121
  53.       Height = 21
  54.       TabOrder = 2
  55.       OnExit = ParamValueExit
  56.     end
  57.     object NullValue: TCheckBox
  58.       Left = 143
  59.       Top = 112
  60.       Width = 82
  61.       Height = 17
  62.       Caption = '&Null Value'
  63.       TabOrder = 3
  64.       OnClick = NullValueClick
  65.     end
  66.     object TypeList: TComboBox
  67.       Left = 208
  68.       Top = 36
  69.       Width = 121
  70.       Height = 21
  71.       Style = csDropDownList
  72.       ItemHeight = 13
  73.       Sorted = True
  74.       TabOrder = 1
  75.       OnChange = TypeListChange
  76.     end
  77.     object ParamList: TListBox
  78.       Left = 8
  79.       Top = 36
  80.       Width = 121
  81.       Height = 93
  82.       ItemHeight = 13
  83.       Sorted = True
  84.       TabOrder = 0
  85.       OnClick = ParamListChange
  86.     end
  87.   end
  88.   object OkBtn: TButton
  89.     Left = 54
  90.     Top = 153
  91.     Width = 75
  92.     Height = 25
  93.     Caption = 'OK'
  94.     Default = True
  95.     ModalResult = 1
  96.     TabOrder = 1
  97.     OnClick = OkBtnClick
  98.   end
  99.   object CancelBtn: TButton
  100.     Left = 139
  101.     Top = 153
  102.     Width = 75
  103.     Height = 25
  104.     Cancel = True
  105.     Caption = 'Cancel'
  106.     ModalResult = 2
  107.     TabOrder = 2
  108.   end
  109.   object HelpBtn: TButton
  110.     Left = 224
  111.     Top = 153
  112.     Width = 75
  113.     Height = 25
  114.     Caption = '&Help'
  115.     TabOrder = 3
  116.     OnClick = HelpBtnClick
  117.   end
  118. end
  119.