1

我正在使用 FOR 循环来收集系统详细信息的数量及其在网格视图中的可用性。一旦每个循环完成(FOR 循环的每次迭代),我是否可以选择更新网格?

gvReport -> Grid View, 在这里使用

for (int i = 0; i < table.Rows.Count; i++)

{
    RfcDestinationManager.RegisterDestinationConfiguration(sapcfg);
    RfcDestination dest = RfcDestinationManager.GetDestination(table.Rows[i]["host"].ToString() + "," + table.Rows[i]["SID"].ToString() + "," + table.Rows[i]["Client"].ToString() + "," + table.Rows[i]["InsNo"].ToString());

    if (dest != null)
    {
        result = true
        dest.Ping();
    }

    if (result == true) 
    {
        gvReport.Rows[i].Cells[1].BackColor = Color.Green;     
    }
}
4

0 回答 0