我想将datagridview的值传递给另一个,这意味着当我单击datagridview上的按钮时,它应该确定被单击的行并将该行的数据传输到新表单,这是问题所在是代码检测到单击的行,但是当将数据传输到新表单时,只有第一行的数据出现,我必须在其中进行导航。
If e.ColumnIndex = 6 Then
'View Line Items buttons clicked
'Get the ID of the selected invoice
Dim i As Integer = e.RowIndex
Dim row As DataGridViewRow = MessageTBDataGridView.Rows(i)
Dim cell As DataGridViewCell = row.Cells(0)
Dim MessageID As String = CStr(cell.Value)
'Display the Line Items form
Dim formthree As New Form3
formthree.Tag = MessageID
formthree.ShowDialog()
我希望所有被单击的行中的数据都可以转移到新表单中