【发布时间】:2013-10-23 15:06:44
【问题描述】:
我真的很生气。我不明白为什么这个事件总是抛出一个空白错误。下面是我的代码。
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
在我的输出中,我得到“错误描述:”。就是这样。如果有人有任何解决方案或指出正确的方向,那就太好了。
【问题讨论】:
-
错误转到?请救救我。
-
我猜这是不好的做法......
标签: vb.net