有没有方法可以获得datagridview 选中单元格的所在列的标题
有没有方法可以获得datagridview 选中单元格的所在列的标题请高手指点 --------------------编程问答-------------------- currentcell.rowindex 当前单元格的行索引
currentcell.columnindex 当前单元格的列索引.
columns(index).headertext 列标题.
--------------------编程问答--------------------
--------------------编程问答-------------------- 太感谢了,你们都是高手 --------------------编程问答-------------------- ***.text=me.datagridview1.currentrow.cells(0).value --------------------编程问答-------------------- 2楼正解
Dim colIndex As Integer
If dgv.CurrentCell Is Nothing Then
Return
End If
colIndex = dgv.CurrentCell.ColumnIndex
If colIndex < 0 Then
Return
End If
MessageBox.Show(dgv.Columns(colIndex).HeaderText)
补充:.NET技术 , VB.NET