0
我真的很惱火在這裏。我不明白爲什麼這個事件不斷拋出一個空白的錯誤。以下是我的代碼。VB.Net SelectedChangeCommitted拋出錯誤
Private Sub cboSections_SelectedChangeCommitted(sender As System.Object, e As System.EventArgs) Handles cboSections.SelectionChangeCommitted
On Error GoTo EH
If TypeOf sender Is Windows.Forms.ComboBox Then
'some boolean that checks if we are skipping this event, thus it does if so
If mbSkipEvent Then Exit Sub
'checks if index that was changed to is > 0 then it toggles the bottom command buttons
If cboSections.SelectedIndex > 0 Then
ToggleCmdButtons(True)
Else
ToggleCmdButtons(False)
End If
'sets the string msPurpose
msPurpose = "Show Section"
Debug.Print("Im here")
End If
EH:
Debug.Print("Error Description: " & Err.Description)
End Sub
在我的輸出中,我得到「錯誤描述:」。而已。如果任何人有任何解決方案或指向正確的方向將是偉大的。
On Error Goto?請救我。 –
我想這是不好的做法... – j0hnstew