?? 方差檢驗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 = "繼 續(xù)"
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
'方差假設(shè)檢驗
Option Explicit
'繼續(xù)
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
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -