You've already forked lazarus-ccr
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@7887 8e941d3f-bd1b-0410-a28a-d453659cc2b4
156 lines
3.1 KiB
Plaintext
156 lines
3.1 KiB
Plaintext
object TestGenFrm: TTestGenFrm
|
|
Left = 173
|
|
Height = 283
|
|
Top = 97
|
|
Width = 310
|
|
Caption = 'Test Data Generation'
|
|
ClientHeight = 283
|
|
ClientWidth = 310
|
|
OnShow = FormShow
|
|
LCLVersion = '0.9.28.2'
|
|
object Label1: TLabel
|
|
Left = 6
|
|
Height = 14
|
|
Top = 16
|
|
Width = 189
|
|
Caption = 'Number of item (Variables) to Generate'
|
|
ParentColor = False
|
|
end
|
|
object Label2: TLabel
|
|
Left = 7
|
|
Height = 14
|
|
Top = 47
|
|
Width = 200
|
|
Caption = 'Number of Subjects (Cases) to Generate:'
|
|
ParentColor = False
|
|
end
|
|
object Label3: TLabel
|
|
Left = 6
|
|
Height = 14
|
|
Top = 79
|
|
Width = 185
|
|
Caption = 'What is the desired Total Score Mean?'
|
|
ParentColor = False
|
|
end
|
|
object Label4: TLabel
|
|
Left = 6
|
|
Height = 14
|
|
Top = 113
|
|
Width = 214
|
|
Caption = 'What is the desired test standard deviation?'
|
|
ParentColor = False
|
|
end
|
|
object Label5: TLabel
|
|
Left = 7
|
|
Height = 14
|
|
Top = 144
|
|
Width = 166
|
|
Caption = 'What is the desired test reliability?'
|
|
ParentColor = False
|
|
end
|
|
object Options: TRadioGroup
|
|
Left = 7
|
|
Height = 57
|
|
Top = 174
|
|
Width = 210
|
|
AutoFill = True
|
|
Caption = 'Generate responses that are:'
|
|
ChildSizing.LeftRightSpacing = 6
|
|
ChildSizing.TopBottomSpacing = 6
|
|
ChildSizing.EnlargeHorizontal = crsHomogenousChildResize
|
|
ChildSizing.EnlargeVertical = crsHomogenousChildResize
|
|
ChildSizing.ShrinkHorizontal = crsScaleChilds
|
|
ChildSizing.ShrinkVertical = crsScaleChilds
|
|
ChildSizing.Layout = cclLeftToRightThenTopToBottom
|
|
ChildSizing.ControlsPerLine = 1
|
|
ClientHeight = 39
|
|
ClientWidth = 206
|
|
Items.Strings = (
|
|
'True / False (dichotomous 0 or 1)'
|
|
'Contnuous'
|
|
)
|
|
TabOrder = 0
|
|
end
|
|
object NoItemsEdit: TEdit
|
|
Left = 231
|
|
Height = 21
|
|
Top = 10
|
|
Width = 41
|
|
OnKeyPress = NoItemsEditKeyPress
|
|
TabOrder = 1
|
|
Text = 'NoItemsEdit'
|
|
end
|
|
object NoCasesEdit: TEdit
|
|
Left = 231
|
|
Height = 21
|
|
Top = 41
|
|
Width = 41
|
|
OnKeyPress = NoCasesEditKeyPress
|
|
TabOrder = 2
|
|
Text = 'Edit1'
|
|
end
|
|
object MeanEdit: TEdit
|
|
Left = 231
|
|
Height = 21
|
|
Top = 73
|
|
Width = 41
|
|
OnKeyPress = MeanEditKeyPress
|
|
TabOrder = 3
|
|
Text = 'Edit1'
|
|
end
|
|
object SDEdit: TEdit
|
|
Left = 231
|
|
Height = 21
|
|
Top = 107
|
|
Width = 41
|
|
OnKeyPress = SDEditKeyPress
|
|
TabOrder = 4
|
|
Text = 'Edit1'
|
|
end
|
|
object RelEdit: TEdit
|
|
Left = 231
|
|
Height = 21
|
|
Top = 138
|
|
Width = 41
|
|
OnKeyPress = RelEditKeyPress
|
|
TabOrder = 5
|
|
Text = 'Edit1'
|
|
end
|
|
object ResetBtn: TButton
|
|
Left = 9
|
|
Height = 31
|
|
Top = 241
|
|
Width = 67
|
|
Caption = 'Reset'
|
|
OnClick = ResetBtnClick
|
|
TabOrder = 6
|
|
end
|
|
object CancelBtn: TButton
|
|
Left = 80
|
|
Height = 31
|
|
Top = 240
|
|
Width = 67
|
|
Caption = 'Cancel'
|
|
ModalResult = 2
|
|
TabOrder = 7
|
|
end
|
|
object ComputeBtn: TButton
|
|
Left = 153
|
|
Height = 31
|
|
Top = 241
|
|
Width = 67
|
|
Caption = 'Compute'
|
|
OnClick = ComputeBtnClick
|
|
TabOrder = 8
|
|
end
|
|
object ReturnBtn: TButton
|
|
Left = 231
|
|
Height = 31
|
|
Top = 241
|
|
Width = 67
|
|
Caption = 'Return'
|
|
ModalResult = 1
|
|
TabOrder = 9
|
|
end
|
|
end
|