我有一个三列datagridview
。vb.net
第一列是产品描述,第二列是产品编号,第三列是价格。
我想datagridview
按产品编号搜索并在价格列中返回相应的值。
我可以在 s 中搜索文本datagridview
,但我无法读取相应单元格的值,例如价格单元格。
Private Sub Button33_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button33.Click
Dim rowindex As String
For Each row As DataGridViewRow In DataGridView1.Rows
If row.Cells.Item("ITEM_ID").Value = TextBox5.Text Then
rowindex = row.Index.ToString()
Dim actie As String = row.Cells("PRICE").Value.ToString()
MsgBox(actie)
Else
MsgBox("Item not found")
End If
Next
End Sub