Updated W03_Extensions example (background loading of extensions).

This commit is contained in:
the_fiddler 2007-09-05 13:35:40 +00:00
parent 5e28f31660
commit e74cfac148

View file

@ -72,7 +72,7 @@ namespace Examples.WinForms
}
backgroundWorker1.ReportProgress((int)(((float)i / all) * 100.0f),
String.Format("{0}/{1} {2}: {3}", (++i).ToString(), all, d != null ? "ok" : "failed", f.Name));
String.Format("({0}/{1}) {2}:\t{3}", (++i).ToString(), all, d != null ? "ok" : "failed", f.Name));
}
}
catch (Exception expt)