0

ここは本当にイライラします。このイベントが空白のエラーをスローし続ける理由がわかりません。以下は私のコードです。

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

私の出力では、「エラーの説明:」が表示されます。それでおしまい。誰かが解決策を持っているか、正しい方向を示しているなら、それは素晴らしいことです。

4

1 に答える 1