-
Notifications
You must be signed in to change notification settings - Fork 25
/
ReadInt.lfm
executable file
·64 lines (64 loc) · 1.51 KB
/
ReadInt.lfm
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
object ReadIntForm: TReadIntForm
Tag = 321
Left = 334
Height = 68
Top = 206
Width = 620
ActiveControl = ReadIntEdit
AutoSize = True
BorderStyle = bsDialog
BorderWidth = 4
Caption = 'Integer required'
ClientHeight = 68
ClientWidth = 620
Constraints.MinWidth = 620
OnCreate = FormCreate
OnShow = FormShow
Position = poScreenCenter
LCLVersion = '2.1.0.0'
object ReadIntLabel: TLabel
AnchorSideLeft.Control = Owner
AnchorSideTop.Control = ReadIntEdit
AnchorSideTop.Side = asrCenter
Left = 8
Height = 16
Top = 10
Width = 93
Alignment = taRightJustify
BorderSpacing.Left = 4
Caption = 'Enter a number'
ParentColor = False
OnClick = ReadIntLabelClick
end
object ReadIntEdit: TSpinEdit
AnchorSideTop.Control = Owner
AnchorSideRight.Control = Owner
AnchorSideRight.Side = asrBottom
Left = 476
Height = 21
Top = 8
Width = 136
Anchors = [akTop, akRight]
BorderSpacing.Top = 4
BorderSpacing.Right = 4
MaxValue = 0
TabOrder = 1
end
object OKBtn: TButton
AnchorSideTop.Control = ReadIntEdit
AnchorSideTop.Side = asrBottom
AnchorSideRight.Control = Owner
AnchorSideRight.Side = asrBottom
Left = 537
Height = 25
Top = 33
Width = 75
Anchors = [akTop, akRight]
BorderSpacing.Top = 4
BorderSpacing.Right = 4
BorderSpacing.InnerBorder = 4
Caption = 'OK'
OnClick = OKBtnClick
TabOrder = 0
end
end