You've already forked lazarus-ccr
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@7885 8e941d3f-bd1b-0410-a28a-d453659cc2b4
81 lines
1.4 KiB
Plaintext
81 lines
1.4 KiB
Plaintext
object ProbzForm: TProbzForm
|
|
Left = 238
|
|
Height = 190
|
|
Top = 161
|
|
Width = 320
|
|
Caption = 'Probability of a larger z score'
|
|
ClientHeight = 190
|
|
ClientWidth = 320
|
|
OnShow = ResetBtnClick
|
|
LCLVersion = '0.9.30'
|
|
object Label1: TLabel
|
|
Left = 9
|
|
Height = 16
|
|
Top = 16
|
|
Width = 104
|
|
Caption = 'Observed z score = '
|
|
ParentColor = False
|
|
end
|
|
object zEdit: TEdit
|
|
Left = 113
|
|
Height = 23
|
|
Top = 9
|
|
Width = 83
|
|
TabOrder = 0
|
|
Text = 'zEdit'
|
|
end
|
|
object Label2: TLabel
|
|
Left = 9
|
|
Height = 16
|
|
Top = 46
|
|
Width = 91
|
|
Caption = 'Probability > z = '
|
|
ParentColor = False
|
|
end
|
|
object ProbzEdit: TEdit
|
|
Left = 113
|
|
Height = 23
|
|
Top = 40
|
|
Width = 80
|
|
TabOrder = 1
|
|
Text = 'ProbzEdit'
|
|
end
|
|
object CancelBtn: TButton
|
|
Left = 8
|
|
Height = 33
|
|
Top = 80
|
|
Width = 82
|
|
Cancel = True
|
|
Caption = 'Cancel'
|
|
ModalResult = 2
|
|
TabOrder = 2
|
|
end
|
|
object ResetBtn: TButton
|
|
Left = 113
|
|
Height = 33
|
|
Top = 80
|
|
Width = 82
|
|
Caption = 'Reset'
|
|
OnClick = ResetBtnClick
|
|
TabOrder = 3
|
|
end
|
|
object ComputeBtn: TButton
|
|
Left = 216
|
|
Height = 33
|
|
Top = 80
|
|
Width = 82
|
|
Caption = 'Compute'
|
|
OnClick = ComputeBtnClick
|
|
TabOrder = 4
|
|
end
|
|
object ReturnBtn: TButton
|
|
Left = 115
|
|
Height = 33
|
|
Top = 130
|
|
Width = 77
|
|
Caption = 'Return'
|
|
ModalResult = 1
|
|
TabOrder = 5
|
|
end
|
|
end
|