-
Notifications
You must be signed in to change notification settings - Fork 25
/
ReadFloat.lfm
executable file
·64 lines (64 loc) · 1.56 KB
/
ReadFloat.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 ReadFloatForm: TReadFloatForm
Tag = 321
Left = 369
Height = 95
Top = 410
Width = 620
HorzScrollBar.Page = 464
VertScrollBar.Page = 94
BorderIcons = [biSystemMenu, biMinimize]
BorderStyle = bsDialog
Caption = 'Real number required'
ClientHeight = 95
ClientWidth = 620
Constraints.MinWidth = 620
Position = poScreenCenter
LCLVersion = '2.1.0.0'
object ReadFloatLabel: TLabel
AnchorSideLeft.Control = Owner
AnchorSideTop.Control = ReadFloatEdit
AnchorSideTop.Side = asrCenter
Left = 4
Height = 16
Top = 6
Width = 93
Alignment = taRightJustify
BorderSpacing.Left = 4
Caption = 'Enter a number'
ParentColor = False
end
object OKBtn: TButton
AnchorSideTop.Control = ReadFloatEdit
AnchorSideTop.Side = asrBottom
AnchorSideRight.Control = Owner
AnchorSideRight.Side = asrBottom
Left = 541
Height = 25
Top = 29
Width = 75
Anchors = [akTop, akRight]
BorderSpacing.Top = 4
BorderSpacing.Right = 4
BorderSpacing.InnerBorder = 4
Caption = 'OK'
OnClick = OKBtnClick
TabOrder = 0
end
object ReadFloatEdit: TFloatSpinEdit
AnchorSideTop.Control = Owner
AnchorSideRight.Control = Owner
AnchorSideRight.Side = asrBottom
Left = 497
Height = 21
Top = 4
Width = 119
Anchors = [akTop, akRight]
BorderSpacing.Top = 4
BorderSpacing.Right = 4
DecimalPlaces = 4
MaxValue = 9999999999999
MinValue = -9999999999999
TabOrder = 1
Value = 0
end
end