在DataGridView中如何按字段来取值.
用DataGridView.CurrentRow.Index可以得到当前记录的行号,但如果我想得到该行字段“ID“的值,应该用什么办法呢?
Dim table As DataTable
Dim str As String
Table = CType(DataGridView.DataSource, DataTable)
str = Table.Rows(DataGridView.CurrentRowIndex)("ID")
怎么做要看你是用什么方式将数据填充这个DataGridView,填充方式不同,可以使用的方法也就不同了