首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > .NET > VB Dotnet >

datagridview控件选中某行后触发事件的代码哪里有错,多谢各位

2013-08-16 
datagridview控件选中某行后触发事件的代码哪里有错,谢谢各位大虾Private Sub DataGridView1_CellValueCha

datagridview控件选中某行后触发事件的代码哪里有错,谢谢各位大虾
Private Sub DataGridView1_CellValueChanged(ByVal sender As System.Object, ByVal e As System.Windows.Forms.DataGridViewCellEventArgs) Handles DataGridView1.CellValueChanged
        selectedsheet = DataGridView1.CurrentCell.Value
        If selectedsheet Is Nothing Then
            Button3.Enabled = False
            Button4.Enabled = False
        Else
            Button3.Enabled = True
            Button4.Enabled = True
        End If
    End Sub

代码不对吧。

热点排行