0

我创建了一个数据表作为我的 datagridview 的源,如下所示:

    Dim dt As New DataTable
    dt.Clear()
    DataGridView1.DataSource = dt
    dt.Columns.Add("Customer")
    dt.Columns.Add("Dtime")
    dt.Columns.Add("Title")
    dt.Columns.Add("EventID")

EventID 是数字,将被传递给一个新表单以告诉它要打开哪个记录(该位有效,我在另一个表单上使用它)。

我努力了:

event = DataGridView1.SelectedRows(e.RowIndex).Cells(3).Value.ToString
event = Convert.ToInt32(DataGridView1.SelectedRows(0).Cells(3).Value.ToString)
event = Convert.ToInt32(DataGridView1.Item("EventID", DataGridView1.CurrentRow.Index).Value.ToString)

可能还有我在这个网站和其他网站上找到的十几种其他方法,但我一直收到同样的错误:

An unhandled exception of type 'System.ArgumentOutOfRangeException' occurred in mscorlib.dll

Additional information: Index was out of range. Must be non-negative and less than the size of the collection.

这让我发疯,我做错了什么?请帮忙!

4

1 回答 1

1
event = DataGridView1.Rows(e.RowIndex).Cells(3).Value.ToString()
于 2013-09-26T15:45:05.777 回答