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
|
object modifnombremole: Tmodifnombremole
Left = 290
Height = 128
Top = 179
Width = 505
ActiveControl = Edit1
BorderIcons = [biSystemMenu, biMinimize]
BorderStyle = bsSingle
Caption = 'Modification concentration'
ClientHeight = 128
ClientWidth = 505
OnCreate = FormCreate
OnShow = FormShow
LCLVersion = '1.2.2.0'
object Label1: TLabel
AnchorSideLeft.Control = Owner
AnchorSideTop.Control = Owner
Left = 10
Height = 20
Top = 10
Width = 160
BorderSpacing.Left = 10
BorderSpacing.Top = 10
Caption = 'Concentration molaire:'
Font.Style = [fsBold]
ParentColor = False
ParentFont = False
end
object Label2: TLabel
AnchorSideLeft.Control = Edit1
AnchorSideLeft.Side = asrBottom
AnchorSideTop.Control = Label1
AnchorSideTop.Side = asrCenter
Left = 295
Height = 20
Top = 10
Width = 42
BorderSpacing.Left = 10
Caption = 'mol/L'
Font.Style = [fsBold]
ParentColor = False
ParentFont = False
end
object Edit1: TEdit
AnchorSideLeft.Control = Label1
AnchorSideLeft.Side = asrBottom
AnchorSideTop.Control = Label1
AnchorSideTop.Side = asrCenter
Left = 180
Height = 28
Top = 6
Width = 105
BorderSpacing.Left = 10
OnKeyPress = Edit1KeyPress
TabOrder = 0
end
object BitBtn1: TBitBtn
AnchorSideLeft.Control = Owner
AnchorSideTop.Control = Label1
AnchorSideTop.Side = asrBottom
AnchorSideRight.Control = Owner
AnchorSideRight.Side = asrBottom
AnchorSideBottom.Control = Owner
AnchorSideBottom.Side = asrBottom
Left = 10
Height = 68
Top = 50
Width = 485
Anchors = [akTop, akLeft, akRight, akBottom]
BorderSpacing.Left = 10
BorderSpacing.Top = 20
BorderSpacing.Right = 10
BorderSpacing.Bottom = 10
Caption = '&OK'
Default = True
Kind = bkOK
ModalResult = 1
TabOrder = 1
end
end
|