home *** CD-ROM | disk | FTP | other *** search
/ DOS/V Power Report 1996 August / VPR9608A.BIN / del20try / install / data.z / FILTER1.DFM / FILTER1.txt
Text File  |  1996-05-08  |  3KB  |  162 lines

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