-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathmodder.dfm
95 lines (95 loc) · 1.89 KB
/
modder.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
object memmod: Tmemmod
Left = 527
Top = 130
BorderIcons = [biSystemMenu]
BorderStyle = bsToolWindow
Caption = 'Memory Editor'
ClientHeight = 120
ClientWidth = 184
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = []
FormStyle = fsStayOnTop
OldCreateOrder = False
Position = poScreenCenter
OnShow = FormShow
PixelsPerInch = 96
TextHeight = 13
object Panel1: TPanel
Left = 0
Top = 0
Width = 185
Height = 121
BevelInner = bvLowered
TabOrder = 0
object Label1: TLabel
Left = 5
Top = 10
Width = 41
Height = 13
Caption = 'Address:'
end
object Label2: TLabel
Left = 19
Top = 37
Width = 27
Height = 13
Caption = 'Type:'
end
object Label3: TLabel
Left = 16
Top = 64
Width = 30
Height = 13
Caption = 'Value:'
end
object address: TEdit
Left = 54
Top = 8
Width = 121
Height = 21
BiDiMode = bdLeftToRight
CharCase = ecUpperCase
ParentBiDiMode = False
TabOrder = 0
end
object applybtn: TButton
Left = 56
Top = 92
Width = 73
Height = 19
Caption = 'Apply'
ParentShowHint = False
ShowHint = True
TabOrder = 1
OnClick = applybtnClick
end
object vartype: TComboBox
Left = 54
Top = 34
Width = 121
Height = 21
ItemHeight = 13
ItemIndex = 0
TabOrder = 2
Text = 'Byte'
Items.Strings = (
'Byte'
'2 Bytes'
'4 Bytes'
'Float'
'Double'
'String')
end
object value: TEdit
Left = 54
Top = 60
Width = 121
Height = 21
TabOrder = 3
end
end
end