如何让它读取DataGridView和SetAttribute? 我一直这样做:
(string)dataGridView1.Rows[dataGridView1.SelectedRows[0].Index].Cells[0].Value)
读取第一行,但我需要读取0,然后是下一行(1,第一秒后等)
我看过这个问题:DataGridView navigating to next row
但我不知道如何写它。
这是我现在要阅读的代码:
webBrowser1.Document.GetElementById("pass").SetAttribute("value", (string)dataGridView1.Rows[dataGridView1.SelectedRows[0].Index].Cells[0].Value);
答案 0 :(得分:0)
使用for循环逐个遍历所有行
for(int i=0;i<datagrid.Rows.Count;i++){
val=datagrid[0,i].Value.Tostring(); // 0 is column no
}
通过手动递增行计数或一段时间..