📄 frmwizarddataminingalgorithms.frm
字号:
VERSION 5.00
Begin VB.Form frmWizardDataMiningAlgorithms
BorderStyle = 3 'Fixed Dialog
Caption = "Data Mining Wizard "
ClientHeight = 5190
ClientLeft = 45
ClientTop = 330
ClientWidth = 6870
BeginProperty Font
Name = "Arial"
Size = 8.25
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
LinkTopic = "Form1"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 5190
ScaleWidth = 6870
ShowInTaskbar = 0 'False
StartUpPosition = 2 'CenterScreen
WhatsThisHelp = -1 'True
Begin VB.Frame fraWelcome
Height = 4935
Index = 0
Left = 120
TabIndex = 0
Top = 120
Width = 6615
Begin VB.Frame FraNavigation
Height = 735
Left = 360
TabIndex = 5
Top = 4080
Width = 5895
Begin VB.CommandButton cmdCancel
Caption = "&Cancel"
BeginProperty Font
Name = "Tahoma"
Size = 8.25
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 375
Left = 3240
TabIndex = 9
Top = 240
Width = 855
End
Begin VB.CommandButton cmdHelp
Caption = "&Help"
BeginProperty Font
Name = "Tahoma"
Size = 8.25
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 375
Left = 4560
TabIndex = 8
Top = 240
Width = 855
End
Begin VB.CommandButton cmdNext
Caption = "&Next >"
Enabled = 0 'False
BeginProperty Font
Name = "Tahoma"
Size = 8.25
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 375
Left = 1800
TabIndex = 7
Top = 240
Width = 855
End
Begin VB.CommandButton cmdBack
Caption = "< &Back"
BeginProperty Font
Name = "Tahoma"
Size = 8.25
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 375
Left = 480
TabIndex = 6
Top = 240
Width = 855
End
End
Begin VB.Frame fraWelcome
Height = 975
Index = 2
Left = 120
TabIndex = 3
Top = 3000
Width = 6375
Begin VB.Label lblWelcome
Caption = "Select the Data Mining Algorithm you want to use in analyzing your data. "
BeginProperty Font
Name = "Tahoma"
Size = 8.25
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 255
Index = 2
Left = 120
TabIndex = 4
Top = 240
Width = 6135
WordWrap = -1 'True
End
End
Begin VB.Frame fraWelcome
Height = 2415
Index = 1
Left = 120
TabIndex = 1
Top = 240
Width = 6375
Begin VB.ComboBox cmbAlgorithm
Height = 330
Left = 240
TabIndex = 11
Top = 1320
Width = 4095
End
Begin VB.Label lblWelcome
Caption = "Available Data Mining Algorithms . . ."
BeginProperty Font
Name = "Tahoma"
Size = 8.25
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 255
Index = 1
Left = 120
TabIndex = 10
Top = 720
Width = 6135
WordWrap = -1 'True
End
Begin VB.Label lblWelcome
Caption = "Select the Data Mining Algorithm you want to use ."
BeginProperty Font
Name = "Tahoma"
Size = 8.25
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 255
Index = 0
Left = 120
TabIndex = 2
Top = 240
Width = 5895
End
End
End
End
Attribute VB_Name = "frmWizardDataMiningAlgorithms"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub cmbAlgorithm_Click()
If cmbAlgorithm.Text <> "" Then
cmdNext.Enabled = True
Else
cmdNext.Enabled = False
End If
End Sub
Private Sub cmdBack_Click()
frmWizardWelcome.Show
Me.Hide
End Sub
Private Sub cmdCancel_Click()
Unload Me
frmWizardWelcome.Show
End Sub
Private Sub cmdNext_Click()
If DataMiningServer Is Nothing Then
Set DataMiningServer = New cDataMiningServer
End If
DataMiningServer.AlgorithmSelected = cmbAlgorithm.Text
frmWizardDataSource.Show
Me.Hide
End Sub
Private Sub Form_Load()
'Initialize the Combo Box with
'Available Data Mining Algorithms
cmbAlgorithm.AddItem "Decision Trees Algorithm", 0
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -