如何将值从DataGridView传递到RadioButton

时间:2019-02-12 16:46:17

标签: vb.net

如何将值从DataGridVeiw传递到VB.Net中的RadioButton? 我已经尝试了以下代码,但无法正常工作。

If DataGridView1.Rows(e.RowIndex).Cells(2).Value.ToString.Equals("A") Then
    RadioButton1.Checked = True
ElseIf DataGridView1.Rows(e.RowIndex).Cells(2).Value.ToString.Equals("B") Then
    RadioButton2.Checked = True
End If

1 个答案:

答案 0 :(得分:0)

检查您的数据库是否带有“ A”空格,例如它可以像“ A”:

If DataGridView1.Rows(e.RowIndex).Cells(2).Value.ToString.Equals("A ")
Then RadioButton1.Checked = True
ElseIf DataGridView1.Rows(e.RowIndex).Cells(2).Value.ToString.Equals("B ")
Then RadioButton2.Checked = True End If