ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/EmuXPortal/branches/uienhancements/EmuXPortal/Form1.cs
(Generate patch)

Comparing branches/uienhancements/EmuXPortal/Form1.cs (file contents):
Revision 55 by william, Sun Apr 8 13:25:33 2012 UTC vs.
Revision 56 by william, Sun Apr 8 13:45:24 2012 UTC

--- branches/uienhancements/EmuXPortal/Form1.cs	2012/04/08 13:41:46	55
+++ branches/uienhancements/EmuXPortal/Form1.cs	2012/04/08 13:45:24	56
@@ -11,7 +11,6 @@ using EmuXPortal.Logging;
 using System.Diagnostics;
 using System.Reflection;
 using System.Threading;
-using Utilities.TransparentControls;
 
 namespace EmuXPortal
 {
@@ -232,15 +231,15 @@ namespace EmuXPortal
             Stopwatch t = e.Argument as Stopwatch;
             RomParser parser = new RomParser(CurrentSelectedRom);
 
-            ProgressBarWithPercentageLabel bar = new ProgressBarWithPercentageLabel();
+            ProgressBar bar = new ProgressBar();
             AddGameControl(bar);
             UpdateGameControls();
             Application.DoEvents();
             Thread.Sleep(10);
             bar.Invoke(new MethodInvoker(delegate
             {
-                bar.Message = "Please Wait...";
-                bar.ShowPercentageLabel = true;
+                //bar.Message = "Please Wait...";
+                //bar.ShowPercentageLabel = true;
                 bar.Margin = new System.Windows.Forms.Padding(0);
                 bar.Size = new Size(GetFormWidth() - 25, 100);
             }));
@@ -289,8 +288,8 @@ namespace EmuXPortal
             PlatformParser parser = new PlatformParser(Config.RomPath);
             double count = 0;
             double total_count = parser.Platforms.Count;
-            ProgressBarWithPercentageLabel bar = new ProgressBarWithPercentageLabel();
-            AddPlatformControl(bar);
+            ProgressBar bar = new ProgressBar();
+             AddPlatformControl(bar);
             UpdatePlatformControls();
             Application.DoEvents();
             Thread.Sleep(10);