156 lines
3.2 KiB
Plaintext
156 lines
3.2 KiB
Plaintext
object WhereExpressionForm: TWhereExpressionForm
|
|
Left = 299
|
|
Top = 154
|
|
BorderIcons = [biSystemMenu]
|
|
BorderStyle = bsSingle
|
|
Caption = 'Single Expresion'
|
|
ClientHeight = 147
|
|
ClientWidth = 519
|
|
Color = clBtnFace
|
|
Font.Charset = DEFAULT_CHARSET
|
|
Font.Color = clWindowText
|
|
Font.Height = -11
|
|
Font.Name = 'MS Sans Serif'
|
|
Font.Style = []
|
|
OldCreateOrder = False
|
|
Position = poScreenCenter
|
|
PixelsPerInch = 96
|
|
TextHeight = 13
|
|
object Panel1: TPanel
|
|
Left = 0
|
|
Top = 0
|
|
Width = 519
|
|
Height = 106
|
|
Align = alClient
|
|
BevelOuter = bvNone
|
|
TabOrder = 0
|
|
object Label1: TLabel
|
|
Left = 72
|
|
Top = 16
|
|
Width = 53
|
|
Height = 13
|
|
Caption = 'Field Name'
|
|
end
|
|
object Label2: TLabel
|
|
Left = 216
|
|
Top = 16
|
|
Width = 46
|
|
Height = 13
|
|
Caption = 'Operation'
|
|
end
|
|
object lbValue: TLabel
|
|
Left = 304
|
|
Top = 16
|
|
Width = 27
|
|
Height = 13
|
|
Caption = 'Value'
|
|
Visible = False
|
|
end
|
|
object cmbFldName: TComboBox
|
|
Left = 72
|
|
Top = 32
|
|
Width = 137
|
|
Height = 21
|
|
Style = csDropDownList
|
|
ItemHeight = 13
|
|
TabOrder = 0
|
|
OnClick = cmbFldNameClick
|
|
OnKeyPress = cmbFldNameKeyPress
|
|
end
|
|
object cmbOper: TComboBox
|
|
Left = 216
|
|
Top = 32
|
|
Width = 81
|
|
Height = 21
|
|
Style = csDropDownList
|
|
ItemHeight = 13
|
|
TabOrder = 1
|
|
OnClick = cmbOperClick
|
|
OnKeyPress = cmbOperKeyPress
|
|
end
|
|
object edtValue: TEdit
|
|
Left = 304
|
|
Top = 32
|
|
Width = 209
|
|
Height = 21
|
|
TabOrder = 2
|
|
Visible = False
|
|
OnChange = edtValueChange
|
|
end
|
|
object dtValue: TDateTimePicker
|
|
Left = 304
|
|
Top = 32
|
|
Width = 97
|
|
Height = 21
|
|
Date = 39354.876083981480000000
|
|
Time = 39354.876083981480000000
|
|
TabOrder = 3
|
|
Visible = False
|
|
OnChange = edtValueChange
|
|
end
|
|
object emValue: TRichEdit
|
|
Left = 304
|
|
Top = 32
|
|
Width = 209
|
|
Height = 65
|
|
ScrollBars = ssBoth
|
|
TabOrder = 4
|
|
Visible = False
|
|
WordWrap = False
|
|
OnChange = edtValueChange
|
|
end
|
|
object cmbLogOper: TComboBox
|
|
Left = 8
|
|
Top = 32
|
|
Width = 57
|
|
Height = 21
|
|
Style = csDropDownList
|
|
ItemHeight = 13
|
|
ItemIndex = 0
|
|
TabOrder = 5
|
|
Text = 'AND'
|
|
OnClick = cmbLogOperClick
|
|
OnKeyPress = cmbLogOperKeyPress
|
|
Items.Strings = (
|
|
'AND'
|
|
'OR'
|
|
'XOR')
|
|
end
|
|
end
|
|
object Panel2: TPanel
|
|
Left = 0
|
|
Top = 106
|
|
Width = 519
|
|
Height = 41
|
|
Align = alBottom
|
|
BevelOuter = bvNone
|
|
TabOrder = 1
|
|
DesignSize = (
|
|
519
|
|
41)
|
|
object btnOK: TButton
|
|
Left = 330
|
|
Top = 0
|
|
Width = 75
|
|
Height = 25
|
|
Anchors = [akTop, akRight]
|
|
Caption = 'OK'
|
|
Default = True
|
|
ModalResult = 1
|
|
TabOrder = 0
|
|
OnClick = btnOKClick
|
|
end
|
|
object btnCancel: TButton
|
|
Left = 426
|
|
Top = 0
|
|
Width = 75
|
|
Height = 25
|
|
Anchors = [akTop, akRight]
|
|
Cancel = True
|
|
Caption = 'Cancel'
|
|
ModalResult = 2
|
|
TabOrder = 1
|
|
end
|
|
end
|
|
end
|