我在ListView上打印了一个DataTable,它工作正常,但在某些时候,它开始显示theese错误。该项目的解决方法是:
用户填写WinForms,然后在DataBase上插入,当用户完成时,显示MainForm,调用actualizarFormulario()
方法,以便ListView
填充新数据。
修改
此错误中的第156行是item.SubItems.Add(row[1].ToString());
,但它也给了我153,155 ......所有内容都在这个中。
21-05 17:00>例外:Tipo:System.InvalidOperationException Mensaje:收藏品被修改;枚举操作可能不会 执行。 Origen:System.Data Stacktrace:at System.Data.RBTree`1.RBTreeEnumerator.MoveNext()at C:\ Documents中的Operaciones_Diversas.Principal.actualizarFormulario() 和设置\ usuario \ mis documentos \ visual studio 2010 \ Projects \ Operaciones Diversas \ Operaciones Diversas \ Principal.cs:第156行
填充数据的代码是
private void actualizarFormulario()
{
try
{
listaLotes.Items.Clear();
foreach (DataRow row in Consultas.listadoLotes().Rows)
{
ListViewItem item = new ListViewItem(row[0].ToString());
item.SubItems.Add(row[1].ToString());
item.SubItems.Add(Convert.ToDecimal(row[2].ToString().Substring(0, row[2].ToString().Length - 2) + "," + row[2].ToString().Substring(row[2].ToString().Length - 2, 2)).ToString("N2", Cultures.Spain));
item.SubItems.Add(row[3].ToString());
item.SubItems.Add(row[4].ToString());
listaLotes.Items.Add(item);
}
}
catch (Exception ex) { Logger.log(ex); }
}
public static DataTable listadoLotes()
{
try
{
SelectBD sel = new SelectBD(Program.ConexBD,
"SELECT referencia, tipo, total_lote, COUNT(Documentos.id) as Documentos, cuenta FROM Lotes"
+ " LEFT JOIN Documentos"
+ " ON Lotes.referencia = Documentos.ref_lote"
+ " WHERE Lotes.fecha_creacion='" + valoresGenerales.dateHoy + "'"
+ " GROUP BY Lotes.referencia, Lotes.tipo, Lotes.total_lote, Lotes.cuenta"
+ " ORDER BY Lotes.tipo"
);
return sel.DataTable;
}
catch (Exception ex)
{
Logger.log(ex);
return new DataTable();
}
}
编辑2
使用for
循环,正在提高我的程序速度,而且不能这样,因为用户需要快速与所有内容进行交互......
for (int i = 0; i < Consultas.listadoLotes().Rows.Count; i++)
{
ListViewItem item = new ListViewItem(Consultas.listadoLotes().Rows[i]["referencia"].ToString());
item.SubItems.Add(Consultas.listadoLotes().Rows[i]["tipo"].ToString());
item.SubItems.Add(Convert.ToDecimal(Consultas.listadoLotes().Rows[i]["total_lote"].ToString()
.Substring(0, Consultas.listadoLotes().Rows[i]["total_lote"].ToString().Length - 2)
+ ","
+ Consultas.listadoLotes().Rows[i]["total_lote"].ToString()
.Substring(Consultas.listadoLotes().Rows[i]["total_lote"].ToString().Length - 2, 2)).ToString("N2", Cultures.Spain));
item.SubItems.Add(Consultas.listadoLotes().Rows[i]["Documentos"].ToString());
item.SubItems.Add(Consultas.listadoLotes().Rows[i]["cuenta"].ToString());
listaLotes.Items.Add(item);
}
编辑3 工作守则
listaLotes.Items.Clear();
DataTable tabla = Consultas.listadoLotes();
for (int i = 0; i < tabla.Rows.Count; i++)
{
ListViewItem item = new ListViewItem();
item.SubItems.Add(tabla.Rows[i]["referencia"].ToString());
item.SubItems.Add(tabla.Rows[i]["tipo"].ToString());
item.SubItems.Add(Convert.ToDecimal(tabla.Rows[i]["total_lote"].ToString()
.Substring(0, tabla.Rows[i]["total_lote"].ToString().Length - 2)
+ ","
+ tabla.Rows[i]["total_lote"].ToString()
.Substring(tabla.Rows[i]["total_lote"].ToString().Length - 2, 2)).ToString("N2", Cultures.Spain));
item.SubItems.Add(tabla.Rows[i]["Documentos"].ToString());
item.SubItems.Add(tabla.Rows[i]["cuenta"].ToString());
listaLotes.Items.Add(item);
}
答案 0 :(得分:6)
当您迭代可枚举时,您正在修改集合。而不是foreach
循环,而是使用for
循环。