如何在msgbox中顯示值。在數據網格的第一列是基於文本框來查看值,我希望從第二列顯示值和msgbox中的同一行。現在,我只有「項目找到」使用文本框中的值在datagrid中搜索
Private Sub PictureBox12_Click(sender As Object, e As EventArgs) Handles PictureBox12.Click
Dim temp As Integer = 0
For i As Integer = 0 To List2DataGridView.RowCount - 1
For j As Integer = 0 To List2DataGridView.ColumnCount - 1
If List2DataGridView.Rows(i).Cells(j).Value.ToString = TextBox2.Text Then
MsgBox("Intem found")
temp = 1
End If
Next
Next
If temp = 0 Then
MsgBox("Item not found")
End If
End Sub
當你在stackoverflow上回答任何問題時,請解釋一下。 –
@manu我編輯這個解釋代碼,並提供一個更可讀的版本,不知道它是否回答這個問題,但因爲我發現問題的意圖不清楚 –