我有一个datagridview dgvList ..然后我想获取特定行和列的单元格值,而不使用selectedRows属性。
即:
myvalue = dgvList[2nd row][1st column];
答案 0 :(得分:13)
试试这个
myvalue =dgvList.Rows[rowindex].Cells[columnindex].Value.ToString();
答案 1 :(得分:3)
dgvList.Rows[INDEX].Cells[INDEX].Value
答案 2 :(得分:1)
{{1}}
答案 3 :(得分:0)
var myvalue =dgvList.Rows[columnindex, rowindex].Value;
答案 4 :(得分:-1)
如何在dgv cell leave事件中显示dvg中的数据库值
str = "select pprice from product_tbl2 where name='" & Me.DataGridView1.CurrentRow.Cells(1).Value.ToString() & "'"
cmd.CommandText = str
MsgBox(cmd.CommandText)
cmd.Connection = cn
da = New SqlDataAdapter(cmd.CommandText, cn)
dt = New DataTable()
da.Fill(dt)
dvg.currentrows.cell(3) = dt.Rows(0)(0).ToString()