数理统计程序集
源代码在线查看: 平均数检验f0.frm
VERSION 5.00
Begin VB.Form frmOption
Appearance = 0 'Flat
BackColor = &H80000005&
Caption = "平均数检验"
ClientHeight = 2325
ClientLeft = 60
ClientTop = 345
ClientWidth = 2895
LinkTopic = "Form1"
ScaleHeight = 2325
ScaleWidth = 2895
StartUpPosition = 3 '窗口缺省
Begin VB.CommandButton cmdExit
Caption = "退 出"
BeginProperty Font
Name = "宋体"
Size = 14.25
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 375
Left = 1560
TabIndex = 3
Top = 1680
Width = 1095
End
Begin VB.CommandButton cmdContinue
Caption = "继 续"
BeginProperty Font
Name = "宋体"
Size = 14.25
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 375
Left = 240
TabIndex = 2
Top = 1680
Width = 1215
End
Begin VB.OptionButton Option2
Appearance = 0 'Flat
BackColor = &H80000005&
Caption = "双总体"
BeginProperty Font
Name = "隶书"
Size = 26.25
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H80000008&
Height = 735
Left = 360
TabIndex = 1
Top = 840
Width = 2295
End
Begin VB.OptionButton Option1
Appearance = 0 'Flat
BackColor = &H80000005&
Caption = "单总体"
BeginProperty Font
Name = "隶书"
Size = 26.25
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H80000008&
Height = 735
Left = 360
TabIndex = 0
Top = 120
Width = 2175
End
End
Attribute VB_Name = "frmOption"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
'平均数假设检验
Option Explicit
'继续
Private Sub cmdContinue_Click()
If Option1.Value Then frmCalculate.Show
If Option2.Value Then frmTwo.Show
Unload Me
End Sub
'退出
Private Sub cmdExit_Click()
Unload Me
End
End Sub