-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathunit1.lfm
More file actions
158 lines (158 loc) · 2.87 KB
/
unit1.lfm
File metadata and controls
158 lines (158 loc) · 2.87 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
object Form1: TForm1
Left = 353
Height = 347
Top = 124
Width = 257
Caption = 'Form1'
ClientHeight = 347
ClientWidth = 257
Position = poScreenCenter
LCLVersion = '4.99.0.0'
OnCloseQuery = FormCloseQuery
OnCreate = FormCreate
object Label1: TLabel
Left = 8
Height = 16
Top = 19
Width = 54
Caption = 'Blocksize'
end
object Edit1: TEdit
Left = 72
Height = 26
Top = 11
Width = 112
TabOrder = 0
Text = 'Edit1'
OnChange = Edit1Change
end
object Label2: TLabel
Left = 8
Height = 16
Top = 48
Width = 37
Caption = 'Count'
end
object Edit2: TEdit
Left = 72
Height = 26
Top = 40
Width = 112
TabOrder = 1
Text = 'Edit2'
OnChange = Edit1Change
end
object Button1: TButton
Left = 8
Height = 25
Top = 200
Width = 240
Caption = 'Allocate'
TabOrder = 2
OnClick = Button1Click
end
object GroupBox1: TGroupBox
Left = 8
Height = 88
Top = 80
Width = 240
Caption = ' Allocation Mode '
ClientHeight = 71
ClientWidth = 238
TabOrder = 3
object RadioButton1: TRadioButton
Left = 10
Height = 22
Top = 8
Width = 66
Caption = 'Instant'
Checked = True
TabOrder = 2
TabStop = True
end
object RadioButton2: TRadioButton
Left = 10
Height = 22
Top = 40
Width = 115
Caption = 'One Block each'
TabOrder = 0
end
object Edit3: TEdit
Left = 136
Height = 26
Top = 36
Width = 64
TabOrder = 1
Text = 'Edit3'
end
object Label3: TLabel
Left = 208
Height = 16
Top = 44
Width = 18
Caption = 'ms'
end
end
object Label4: TLabel
Left = 192
Height = 16
Top = 19
Width = 34
Caption = 'Total:'
end
object Label5: TLabel
Left = 208
Height = 16
Top = 40
Width = 40
Caption = 'Label5'
end
object Button2: TButton
Left = 8
Height = 25
Top = 264
Width = 240
Caption = 'Free'
Enabled = False
TabOrder = 4
OnClick = Button2Click
end
object Button3: TButton
Left = 8
Height = 25
Top = 312
Width = 240
Caption = 'Close'
TabOrder = 5
OnClick = Button3Click
end
object Label6: TLabel
Left = 16
Height = 16
Top = 238
Width = 92
Caption = 'Allocated RAM:'
end
object Label7: TLabel
Left = 120
Height = 16
Top = 238
Width = 40
Caption = 'Label7'
end
object CheckBox1: TCheckBox
Left = 8
Height = 22
Top = 176
Width = 124
Caption = 'Randomize RAM'
TabOrder = 6
end
object Timer1: TTimer
Enabled = False
OnTimer = Timer1Timer
Left = 160
Top = 72
end
end