74 lines
1.3 KiB
Plaintext
74 lines
1.3 KiB
Plaintext
object frxEvaluateForm: TfrxEvaluateForm
|
|
Left = 185
|
|
Height = 163
|
|
Top = 107
|
|
Width = 281
|
|
BorderStyle = bsDialog
|
|
Caption = 'Evaluate'
|
|
ClientHeight = 163
|
|
ClientWidth = 281
|
|
Color = clBtnFace
|
|
Font.Color = clWindowText
|
|
Font.Height = -11
|
|
Font.Name = 'Tahoma'
|
|
KeyPreview = True
|
|
OnCreate = FormCreate
|
|
OnKeyDown = FormKeyDown
|
|
OnShow = FormShow
|
|
Position = poScreenCenter
|
|
LCLVersion = '1.2.6.0'
|
|
object Label1: TLabel
|
|
Left = 4
|
|
Height = 13
|
|
Top = 4
|
|
Width = 52
|
|
Caption = 'Expression'
|
|
ParentColor = False
|
|
end
|
|
object Label2: TLabel
|
|
Left = 4
|
|
Height = 13
|
|
Top = 52
|
|
Width = 30
|
|
Caption = 'Result'
|
|
ParentColor = False
|
|
end
|
|
object ExpressionE: TEdit
|
|
Left = 4
|
|
Height = 21
|
|
Top = 20
|
|
Width = 273
|
|
OnKeyPress = ExpressionEKeyPress
|
|
TabOrder = 0
|
|
end
|
|
object ResultM: TMemo
|
|
Left = 4
|
|
Height = 89
|
|
Top = 68
|
|
Width = 273
|
|
TabOrder = 1
|
|
end
|
|
object OkB: TButton
|
|
Left = 120
|
|
Height = 25
|
|
Top = 40
|
|
Width = 75
|
|
Caption = 'OK'
|
|
Default = True
|
|
ModalResult = 1
|
|
TabOrder = 2
|
|
Visible = False
|
|
end
|
|
object CancelB: TButton
|
|
Left = 200
|
|
Height = 25
|
|
Top = 40
|
|
Width = 75
|
|
Cancel = True
|
|
Caption = 'Cancel'
|
|
ModalResult = 2
|
|
TabOrder = 3
|
|
Visible = False
|
|
end
|
|
end
|