From 287e4dca8a53ea81c95b46b7df07268ec1316628 Mon Sep 17 00:00:00 2001 From: the_fiddler Date: Wed, 5 Sep 2007 13:35:40 +0000 Subject: [PATCH] Updated W03_Extensions example (background loading of extensions). --- Source/Examples/WinForms/W03_Extensions.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Examples/WinForms/W03_Extensions.cs b/Source/Examples/WinForms/W03_Extensions.cs index 53c0ef9a..d93846ad 100644 --- a/Source/Examples/WinForms/W03_Extensions.cs +++ b/Source/Examples/WinForms/W03_Extensions.cs @@ -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)