forked from HeidiSQL/HeidiSQL
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patheditvar.dfm
More file actions
177 lines (177 loc) · 3.64 KB
/
Copy patheditvar.dfm
File metadata and controls
177 lines (177 loc) · 3.64 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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
object frmEditVariable: TfrmEditVariable
Left = 0
Top = 0
Caption = 'Edit server variable'
ClientHeight = 222
ClientWidth = 291
Color = clBtnFace
Constraints.MinHeight = 260
Constraints.MinWidth = 200
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
OldCreateOrder = False
Position = poMainFormCenter
OnCreate = FormCreate
OnDestroy = FormDestroy
OnShow = FormShow
DesignSize = (
291
222)
PixelsPerInch = 96
TextHeight = 13
object btnOK: TButton
Left = 127
Top = 189
Width = 75
Height = 25
Anchors = [akRight, akBottom]
Caption = 'OK'
Default = True
ModalResult = 1
TabOrder = 0
OnClick = btnOKClick
end
object btnCancel: TButton
Left = 208
Top = 189
Width = 75
Height = 25
Anchors = [akRight, akBottom]
Cancel = True
Caption = 'Cancel'
ModalResult = 2
TabOrder = 1
end
object grpScope: TGroupBox
Left = 8
Top = 142
Width = 275
Height = 41
Anchors = [akLeft, akRight, akBottom]
Caption = 'Scope'
TabOrder = 2
object radioScopeSession: TRadioButton
Left = 16
Top = 14
Width = 105
Height = 17
Caption = 'This session'
TabOrder = 0
end
object radioScopeGlobal: TRadioButton
Left = 122
Top = 14
Width = 113
Height = 17
Caption = 'Global'
TabOrder = 1
end
end
object gbValue: TGroupBox
Left = 8
Top = 8
Width = 275
Height = 128
Anchors = [akLeft, akTop, akRight, akBottom]
Caption = 'name of variable'
TabOrder = 3
DesignSize = (
275
128)
object lblString: TLabel
Left = 8
Top = 26
Width = 32
Height = 13
Caption = 'String:'
end
object lblNumber: TLabel
Left = 8
Top = 53
Width = 41
Height = 13
Caption = 'Number:'
end
object lblEnum: TLabel
Left = 8
Top = 80
Width = 64
Height = 13
Caption = 'Enumeration:'
end
object lblBoolean: TLabel
Left = 8
Top = 105
Width = 42
Height = 13
Caption = 'Boolean:'
end
object radioBooleanOn: TRadioButton
Left = 88
Top = 104
Width = 82
Height = 17
Caption = 'On'
TabOrder = 0
end
object radioBooleanOff: TRadioButton
Left = 176
Top = 104
Width = 91
Height = 17
Anchors = [akLeft, akTop, akRight]
Caption = 'Off'
TabOrder = 1
end
object comboEnum: TComboBox
Left = 88
Top = 77
Width = 180
Height = 21
Style = csDropDownList
Anchors = [akLeft, akTop, akRight]
TabOrder = 2
end
object editNumber: TEdit
Left = 88
Top = 50
Width = 163
Height = 21
Anchors = [akLeft, akTop, akRight]
TabOrder = 3
Text = '0'
end
object UpDownNumber: TUpDown
Left = 251
Top = 50
Width = 16
Height = 21
Anchors = [akTop, akRight]
Associate = editNumber
Min = -2147483648
Max = 2147483647
TabOrder = 4
end
object editString: TEdit
Left = 88
Top = 23
Width = 180
Height = 21
Anchors = [akLeft, akTop, akRight]
TabOrder = 5
end
end
object btnHelp: TButton
Left = 46
Top = 189
Width = 75
Height = 25
Anchors = [akRight, akBottom]
Caption = 'Help'
TabOrder = 4
OnClick = btnHelpClick
end
end