gpt4 book ai didi

vb.net - 根据 DataGridView 上的选定单元格获取 RowIndex

转载 作者:行者123 更新时间:2023-12-04 16:40:03 26 4
gpt4 key购买 nike

我正在尝试根据我在 DataGridView 上选择的单元格获取行索引。我怎样才能在 VB.NET 中做到这一点?

这就是我所拥有的:

 Dim iRowIndex As Integer
For i = 0 To Me.grdTransaction.SelectedCells.Item(iRowIndex)
iRowIndex = Me.grdTransaction.SelectedCells.Item(i).RowIndex.ToString()
Dim s As String = Me.grdTransaction.SelectedRows(i).Cells("DataGridViewTextBoxColumn6").Value
aList.Add(s)

MsgBox("Row index " & iRowIndex)
Next

最佳答案

感谢@matzone 我已经想通了:

  Dim iRowIndex As Integer

For i As Integer = 0 To Me.grdTransaction.SelectedCells.Count - 1
iRowIndex = Me.grdTransaction.SelectedCells.Item(i).RowIndex
aList.Add(Me.grdTransaction.Rows(iRowIndex).Cells("DataGridViewTextBoxColumn6").Value)
MsgBox("Row index " & Format(iRowIndex))
Next

关于vb.net - 根据 DataGridView 上的选定单元格获取 RowIndex,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17169628/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com