-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathunit1.lfm
More file actions
50 lines (50 loc) · 922 Bytes
/
unit1.lfm
File metadata and controls
50 lines (50 loc) · 922 Bytes
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
object Form1: TForm1
Left = 334
Height = 361
Top = 113
Width = 293
BorderIcons = [biSystemMenu]
Caption = 'Form1'
ClientHeight = 361
ClientWidth = 293
Position = poScreenCenter
LCLVersion = '3.99.0.0'
OnCreate = FormCreate
object Edit1: TEdit
Left = 8
Height = 26
Top = 32
Width = 272
TabOrder = 0
Text = 'Edit1'
OnKeyDown = Edit1KeyDown
end
object Label1: TLabel
Left = 8
Height = 16
Top = 8
Width = 85
Caption = 'Enter Number'
end
object Button1: TButton
Left = 7
Height = 25
Top = 64
Width = 273
Caption = 'Calc factors'
TabOrder = 1
OnClick = Button1Click
end
object Memo1: TMemo
Left = 8
Height = 258
Top = 96
Width = 272
Lines.Strings = (
'Memo1'
)
ReadOnly = True
ScrollBars = ssAutoBoth
TabOrder = 2
end
end