File: ReadFloat.lfm

package info (click to toggle)
mricron 0.20120505.1~dfsg.1-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 11,512 kB
  • sloc: pascal: 93,483; sh: 48; makefile: 28
file content (51 lines) | stat: -rw-r--r-- 1,112 bytes parent folder | download | duplicates (4)
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
object ReadFloatForm: TReadFloatForm
  Left = 335
  Height = 95
  Top = 308
  Width = 465
  HorzScrollBar.Page = 464
  VertScrollBar.Page = 94
  BorderIcons = [biSystemMenu]
  BorderStyle = bsDialog
  Caption = 'Real number required'
  ClientHeight = 95
  ClientWidth = 465
  Constraints.MaxHeight = 95
  Constraints.MaxWidth = 465
  Constraints.MinHeight = 95
  Constraints.MinWidth = 465
  Position = poScreenCenter
  LCLVersion = '0.9.29'
  object ReadFloatLabel: TLabel
    Left = 16
    Height = 14
    Top = 15
    Width = 312
    Alignment = taRightJustify
    AutoSize = False
    Caption = 'Enter a number'
    ParentColor = False
  end
  object OKBtn: TButton
    Left = 368
    Height = 25
    Top = 55
    Width = 75
    BorderSpacing.InnerBorder = 4
    Caption = 'OK'
    OnClick = OKBtnClick
    TabOrder = 0
  end
  object ReadFloatEdit: TFloatSpinEdit
    Left = 336
    Height = 21
    Top = 12
    Width = 119
    DecimalPlaces = 4
    Increment = 1
    MaxValue = 100000000
    MinValue = -100000000
    TabOrder = 1
    Value = 0
  end
end