forked from ref-xx/basinc
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathEvaluateBox.dfm
More file actions
117 lines (117 loc) · 2.49 KB
/
EvaluateBox.dfm
File metadata and controls
117 lines (117 loc) · 2.49 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
object EvaluationWindow: TEvaluationWindow
Left = 596
Top = 280
Width = 289
Height = 204
BorderIcons = [biSystemMenu]
Caption = 'Evaluate Expression'
Color = clBtnFace
Constraints.MinHeight = 24
Constraints.MinWidth = 160
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
FormStyle = fsStayOnTop
OldCreateOrder = False
Scaled = False
OnClose = FormClose
OnCreate = FormCreate
OnShow = FormShow
PixelsPerInch = 96
TextHeight = 13
object Label1: TLabel
Left = 8
Top = 8
Width = 59
Height = 13
Caption = 'Expression :'
end
object Label2: TLabel
Left = 8
Top = 52
Width = 37
Height = 13
Caption = 'Result :'
end
object ComboBox1: TComboBox
Left = 8
Top = 24
Width = 266
Height = 22
Anchors = [akLeft, akTop, akRight]
Font.Charset = ANSI_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Courier New'
Font.Style = []
ItemHeight = 14
ParentFont = False
TabOrder = 0
OnChange = ComboBox1Change
OnKeyDown = ComboBox1KeyDown
end
object Memo1: TMemo
Left = 8
Top = 68
Width = 266
Height = 47
Anchors = [akLeft, akTop, akRight, akBottom]
Font.Charset = ANSI_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Courier New'
Font.Style = []
ParentFont = False
ReadOnly = True
TabOrder = 1
end
object Button1: TButton
Left = 8
Top = 120
Width = 69
Height = 21
Anchors = [akLeft, akBottom]
Caption = 'Evaluate'
Default = True
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
ParentFont = False
TabOrder = 2
OnClick = Button1Click
end
object Button2: TButton
Left = 80
Top = 120
Width = 89
Height = 21
Anchors = [akLeft, akBottom]
Caption = 'Add as Watch'
TabOrder = 3
OnClick = Button2Click
end
object Button3: TButton
Left = 227
Top = 120
Width = 47
Height = 21
Anchors = [akRight, akBottom]
Caption = 'Close'
TabOrder = 4
OnClick = Button3Click
end
object Button4: TButton
Left = 188
Top = 120
Width = 37
Height = 21
Anchors = [akRight, akBottom]
Caption = 'Help'
TabOrder = 5
OnClick = Button4Click
end
end