home *** CD-ROM | disk | FTP | other *** search
/ DOS/V Power Report 1997 August / VPR9708A.ISO / D3TRIAL / INSTALL / DATA.Z / FILTER1.DFM / FILTER1.txt
Text File  |  1997-04-30  |  3KB  |  160 lines

  1. object fmFilterFrm: TfmFilterFrm
  2.   Left = 332
  3.   Top = 132
  4.   ActiveControl = Memo1
  5.   BorderStyle = bsSingle
  6.   Caption = 'Filter Condition'
  7.   ClientHeight = 298
  8.   ClientWidth = 305
  9.   Font.Color = clWindowText
  10.   Font.Height = -11
  11.   Font.Style = []
  12.   OnCreate = FormCreate
  13.   PixelsPerInch = 96
  14.   TextHeight = 13
  15.   object Label1: TLabel
  16.     Left = 8
  17.     Top = 128
  18.     Width = 23
  19.     Height = 13
  20.     Caption = '&Fields'
  21.     FocusControl = ListBox1
  22.   end
  23.   object Label2: TLabel
  24.     Left = 8
  25.     Top = 44
  26.     Width = 44
  27.     Height = 13
  28.     Caption = '&Condition'
  29.   end
  30.   object Label3: TLabel
  31.     Left = 161
  32.     Top = 128
  33.     Width = 46
  34.     Height = 13
  35.     Caption = '&Operators'
  36.   end
  37.   object Label4: TLabel
  38.     Left = 8
  39.     Top = 8
  40.     Width = 16
  41.     Height = 13
  42.     Caption = '&List'
  43.     FocusControl = ComboBox1
  44.   end
  45.   object ListBox1: TListBox
  46.     Left = 8
  47.     Top = 144
  48.     Width = 143
  49.     Height = 73
  50.     Hint = 'Doubleclick to add'
  51.     TabStop = False
  52.     ItemHeight = 13
  53.     ParentShowHint = False
  54.     ShowHint = True
  55.     Sorted = True
  56.     TabOrder = 2
  57.     OnDblClick = AddFieldName
  58.   end
  59.   object ListBox2: TListBox
  60.     Left = 161
  61.     Top = 144
  62.     Width = 53
  63.     Height = 141
  64.     Hint = 'Double-click to add'
  65.     TabStop = False
  66.     ItemHeight = 13
  67.     Items.Strings = (
  68.       '>'
  69.       '<'
  70.       '= '
  71.       '>='
  72.       '<='
  73.       '<>'
  74.       'AND'
  75.       'OR'
  76.       '('
  77.       ')')
  78.     ParentShowHint = False
  79.     ShowHint = True
  80.     TabOrder = 3
  81.     OnDblClick = ListBox2DblClick
  82.   end
  83.   object Memo1: TMemo
  84.     Left = 8
  85.     Top = 60
  86.     Width = 289
  87.     Height = 65
  88.     TabOrder = 1
  89.     OnChange = Memo1Change
  90.   end
  91.   object GroupBox1: TGroupBox
  92.     Left = 12
  93.     Top = 224
  94.     Width = 139
  95.     Height = 61
  96.     Caption = 'F&ilter Options'
  97.     TabOrder = 4
  98.     object cbCaseSensitive: TCheckBox
  99.       Left = 8
  100.       Top = 16
  101.       Width = 97
  102.       Height = 17
  103.       Caption = 'Case Sensitive'
  104.       TabOrder = 0
  105.       OnClick = cbCaseSensitiveClick
  106.     end
  107.     object cbNoPartialCompare: TCheckBox
  108.       Left = 8
  109.       Top = 36
  110.       Width = 125
  111.       Height = 17
  112.       Hint = 'Disable partial string comparisons (strings ending with '#39'*'#39')'
  113.       Caption = 'No Partial Compare'
  114.       TabOrder = 1
  115.       OnClick = cbNoPartialCompareClick
  116.     end
  117.   end
  118.   object ComboBox1: TComboBox
  119.     Left = 8
  120.     Top = 24
  121.     Width = 289
  122.     Height = 21
  123.     Cursor = crArrow
  124.     ItemHeight = 13
  125.     Items.Strings = (
  126.       'Company = '#39'S*'#39
  127.       'Country <> '#39'US'#39
  128.       'Country = '#39'US'#39)
  129.     TabOrder = 0
  130.     OnChange = ComboBox1Change
  131.   end
  132.   object BtnApplyFilter: TButton
  133.     Left = 224
  134.     Top = 143
  135.     Width = 75
  136.     Height = 25
  137.     Caption = '&Apply'
  138.     TabOrder = 5
  139.     OnClick = ApplyFilter
  140.   end
  141.   object BtnClear: TButton
  142.     Left = 224
  143.     Top = 173
  144.     Width = 75
  145.     Height = 25
  146.     Caption = 'Cl&ear'
  147.     TabOrder = 6
  148.     OnClick = SBtnClearClick
  149.   end
  150.   object BtnClose: TButton
  151.     Left = 224
  152.     Top = 256
  153.     Width = 75
  154.     Height = 25
  155.     Caption = 'Cl&ose'
  156.     TabOrder = 7
  157.     OnClick = SBtnCloseClick
  158.   end
  159. end
  160.