Files

199 lines
4.8 KiB
Plaintext
Raw Permalink Normal View History

object TwozProbForm: TTwozProbForm
Left = 524
Height = 147
Top = 287
Width = 378
AutoSize = True
BorderStyle = bsDialog
Caption = 'Probability between two z scores'
ClientHeight = 147
ClientWidth = 378
OnActivate = FormActivate
OnShow = ResetBtnClick
Position = poMainFormCenter
LCLVersion = '2.1.0.0'
object CancelBtn: TButton
AnchorSideTop.Control = Bevel1
AnchorSideTop.Side = asrBottom
AnchorSideRight.Control = ResetBtn
Left = 81
Height = 25
Top = 109
Width = 62
Anchors = [akTop, akRight]
AutoSize = True
BorderSpacing.Left = 8
BorderSpacing.Top = 8
BorderSpacing.Right = 12
Cancel = True
Caption = 'Cancel'
ModalResult = 2
TabOrder = 1
end
object ResetBtn: TButton
AnchorSideTop.Control = Bevel1
AnchorSideTop.Side = asrBottom
AnchorSideRight.Control = ComputeBtn
Left = 155
Height = 25
Top = 109
Width = 54
Anchors = [akTop, akRight]
AutoSize = True
BorderSpacing.Top = 8
BorderSpacing.Right = 12
Caption = 'Reset'
OnClick = ResetBtnClick
TabOrder = 2
end
object ComputeBtn: TButton
AnchorSideTop.Control = Bevel1
AnchorSideTop.Side = asrBottom
AnchorSideRight.Control = ReturnBtn
Left = 221
Height = 25
Top = 109
Width = 76
Anchors = [akTop, akRight]
AutoSize = True
BorderSpacing.Top = 8
BorderSpacing.Right = 12
Caption = 'Compute'
OnClick = ComputeBtnClick
TabOrder = 3
end
object ReturnBtn: TButton
AnchorSideTop.Control = Bevel1
AnchorSideTop.Side = asrBottom
AnchorSideRight.Control = Owner
AnchorSideRight.Side = asrBottom
Left = 309
Height = 25
Top = 109
Width = 61
Anchors = [akTop, akRight]
AutoSize = True
BorderSpacing.Top = 8
BorderSpacing.Right = 8
BorderSpacing.Bottom = 8
Caption = 'Return'
ModalResult = 1
TabOrder = 4
end
object Bevel1: TBevel
AnchorSideLeft.Control = Owner
AnchorSideTop.Control = Panel1
AnchorSideTop.Side = asrBottom
AnchorSideRight.Control = Owner
AnchorSideRight.Side = asrBottom
Left = 0
Height = 8
Top = 93
Width = 378
Anchors = [akTop, akLeft, akRight]
Shape = bsBottomLine
end
object Panel1: TPanel
AnchorSideLeft.Control = Owner
AnchorSideLeft.Side = asrCenter
AnchorSideTop.Control = Owner
Left = 81
Height = 85
Top = 8
Width = 217
AutoSize = True
BorderSpacing.Left = 8
BorderSpacing.Top = 8
BorderSpacing.Right = 8
BevelOuter = bvNone
ClientHeight = 85
ClientWidth = 217
TabOrder = 0
object Label1: TLabel
AnchorSideLeft.Control = Panel1
AnchorSideTop.Control = Z1Edit
AnchorSideTop.Side = asrCenter
Left = 0
Height = 15
Top = 4
Width = 141
Caption = 'The probability between z1'
ParentColor = False
end
object Z1Edit: TEdit
AnchorSideLeft.Control = Label1
AnchorSideLeft.Side = asrBottom
AnchorSideTop.Control = Panel1
Left = 149
Height = 23
Top = 0
Width = 68
Alignment = taRightJustify
BorderSpacing.Left = 8
TabOrder = 0
Text = 'Z1Edit'
end
object Label2: TLabel
AnchorSideTop.Control = Z2Edit
AnchorSideTop.Side = asrCenter
AnchorSideRight.Control = Label1
AnchorSideRight.Side = asrBottom
Left = 104
Height = 15
Top = 31
Width = 37
Anchors = [akTop, akRight]
Caption = 'and z2 '
ParentColor = False
end
object Z2Edit: TEdit
AnchorSideLeft.Control = Z1Edit
AnchorSideTop.Control = Z1Edit
AnchorSideTop.Side = asrBottom
AnchorSideRight.Control = Z1Edit
AnchorSideRight.Side = asrBottom
Left = 149
Height = 23
Top = 27
Width = 68
Alignment = taRightJustify
Anchors = [akTop, akLeft, akRight]
BorderSpacing.Top = 4
TabOrder = 1
Text = 'Z2Edit'
end
object Label3: TLabel
AnchorSideTop.Control = ProbEdit
AnchorSideTop.Side = asrCenter
AnchorSideRight.Control = Label1
AnchorSideRight.Side = asrBottom
Left = 84
Height = 15
Top = 66
Width = 57
Anchors = [akTop, akRight]
Caption = 'Probability'
ParentColor = False
end
object ProbEdit: TEdit
AnchorSideLeft.Control = Z1Edit
AnchorSideTop.Control = Z2Edit
AnchorSideTop.Side = asrBottom
AnchorSideRight.Control = Z1Edit
AnchorSideRight.Side = asrBottom
Left = 149
Height = 23
Top = 62
Width = 68
Alignment = taRightJustify
Anchors = [akTop, akLeft, akRight]
BorderSpacing.Top = 12
Font.Style = [fsBold]
ParentFont = False
ReadOnly = True
TabOrder = 2
Text = 'ProbEdit'
end
end
end