forked from cheat-engine/cheat-engine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAddAddress.dfm
324 lines (324 loc) · 6.1 KB
/
AddAddress.dfm
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
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
object AddForm: TAddForm
Left = 839
Top = 729
BorderIcons = [biSystemMenu]
BorderStyle = bsDialog
Caption = 'Add address'
ClientHeight = 167
ClientWidth = 545
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -14
Font.Name = 'MS Sans Serif'
Font.Style = []
OldCreateOrder = False
Position = poScreenCenter
OnCreate = FormCreate
OnShow = FormShow
DesignSize = (
545
167)
PixelsPerInch = 120
TextHeight = 16
object Label1: TLabel
Left = 28
Top = 10
Width = 51
Height = 16
Caption = 'Address'
end
object Label2: TLabel
Left = 47
Top = 68
Width = 32
Height = 16
Caption = 'Type'
end
object Label3: TLabel
Left = 10
Top = 39
Width = 68
Height = 16
Caption = 'Description'
end
object ValuePanel: TPanel
Left = 209
Top = 62
Width = 285
Height = 33
BevelOuter = bvNone
TabOrder = 6
Visible = False
object Label12: TLabel
Left = 0
Top = 5
Width = 110
Height = 21
Alignment = taRightJustify
AutoSize = False
BiDiMode = bdLeftToRight
ParentBiDiMode = False
end
object Edit1: TEdit
Left = 118
Top = 2
Width = 51
Height = 24
PopupMenu = MainForm.emptypopup
TabOrder = 0
Text = '1'
end
object cbUnicode: TCheckBox
Left = 177
Top = 5
Width = 93
Height = 21
Caption = 'Unicode'
TabOrder = 1
end
end
object VarType: TComboBox
Left = 79
Top = 63
Width = 129
Height = 24
Style = csDropDownList
DropDownCount = 9
ItemHeight = 16
TabOrder = 2
OnChange = VarTypeChange
Items.Strings = (
'Binary'
'Byte'
'2 Bytes'
'4 Bytes'
'8 Bytes'
'Float'
'Double'
'Text'
'Array of Byte')
end
object Button1: TButton
Left = 10
Top = 124
Width = 92
Height = 31
Anchors = [akLeft, akBottom]
Caption = 'OK'
Default = True
TabOrder = 3
OnClick = Button1Click
end
object Button2: TButton
Left = 118
Top = 124
Width = 92
Height = 31
Anchors = [akLeft, akBottom]
Cancel = True
Caption = 'Cancel'
TabOrder = 4
OnClick = Button2Click
end
object Description: TEdit
Left = 79
Top = 34
Width = 464
Height = 24
MaxLength = 50
TabOrder = 1
Text = 'No Description!'
end
object BitPanel: TPanel
Left = 208
Top = 62
Width = 316
Height = 33
BevelOuter = bvNone
TabOrder = 5
Visible = False
object Label4: TLabel
Left = 63
Top = 0
Width = 7
Height = 16
Caption = '0'
end
object Label5: TLabel
Left = 84
Top = 0
Width = 7
Height = 16
Caption = '1'
end
object Label6: TLabel
Left = 102
Top = 0
Width = 7
Height = 16
Caption = '2'
end
object Label7: TLabel
Left = 123
Top = 0
Width = 7
Height = 16
Caption = '3'
end
object Label8: TLabel
Left = 143
Top = 0
Width = 7
Height = 16
Caption = '4'
end
object Label9: TLabel
Left = 162
Top = 0
Width = 7
Height = 16
Caption = '5'
end
object Label10: TLabel
Left = 181
Top = 0
Width = 7
Height = 16
Caption = '6'
end
object Label11: TLabel
Left = 202
Top = 0
Width = 7
Height = 16
Caption = '7'
end
object Label13: TLabel
Left = 10
Top = 10
Width = 44
Height = 16
Caption = 'Startbit:'
end
object Label14: TLabel
Left = 217
Top = 7
Width = 46
Height = 16
Caption = 'nrofbits:'
end
object RadioButton1: TRadioButton
Left = 59
Top = 15
Width = 21
Height = 21
Checked = True
TabOrder = 0
TabStop = True
end
object RadioButton2: TRadioButton
Left = 79
Top = 15
Width = 21
Height = 21
TabOrder = 1
end
object RadioButton3: TRadioButton
Left = 98
Top = 15
Width = 21
Height = 21
TabOrder = 2
end
object RadioButton4: TRadioButton
Left = 118
Top = 15
Width = 21
Height = 21
TabOrder = 3
end
object RadioButton5: TRadioButton
Left = 138
Top = 15
Width = 21
Height = 21
TabOrder = 4
end
object RadioButton6: TRadioButton
Left = 158
Top = 15
Width = 20
Height = 21
TabOrder = 5
end
object RadioButton7: TRadioButton
Left = 177
Top = 15
Width = 21
Height = 21
TabOrder = 6
end
object RadioButton8: TRadioButton
Left = 197
Top = 15
Width = 21
Height = 21
TabOrder = 7
end
object Edit2: TEdit
Left = 266
Top = 5
Width = 45
Height = 24
TabOrder = 8
Text = '1'
end
end
object NewAddress: TEdit
Left = 79
Top = 5
Width = 129
Height = 24
TabOrder = 0
Text = '00400000'
OnKeyPress = NewAddressKeyPress
end
object cbPointer: TCheckBox
Left = 23
Top = 98
Width = 71
Height = 21
Alignment = taLeftJustify
BiDiMode = bdLeftToRight
Caption = 'Pointer'
ParentBiDiMode = False
TabOrder = 7
OnClick = cbPointerClick
end
object Button3: TButton
Left = 10
Top = 126
Width = 90
Height = 25
Caption = 'Add pointer'
TabOrder = 8
Visible = False
OnClick = Button3Click
end
object Button4: TButton
Left = 108
Top = 126
Width = 90
Height = 25
Caption = 'Remove'
TabOrder = 9
Visible = False
OnClick = Button4Click
end
object Timer1: TTimer
OnTimer = Timer1Timer
Left = 240
Top = 88
end
end