--- trunk/RomCheater/Docking/FloatingMemorySearcher.cs 2012/06/19 11:54:38 387 +++ trunk/RomCheater/Docking/FloatingMemorySearcher.cs 2012/06/19 11:59:13 388 @@ -1046,9 +1046,9 @@ namespace RomCheater.Docking if (int_percent_done != Last_Whole_Percent_Done && i % ElementsBeforeDisplay == 0) { resultsprogress.Value = int_percent_done; - resultsprogress.Message = string.Format(" -> Reading Address: 0x{0:x8}", i); + //resultsprogress.Message = string.Format(" -> Reading Address: 0x{0:x8}", i); Last_Whole_Percent_Done = int_percent_done; - Application.DoEvents(); + //Application.DoEvents(); } if (SearchWorkerThread.CancellationPending == true) @@ -1060,7 +1060,7 @@ namespace RomCheater.Docking } resultsprogress.Value = 100; resultsprogress.Message = ""; - Application.DoEvents(); + //Application.DoEvents(); } #endregion @@ -1318,9 +1318,9 @@ namespace RomCheater.Docking if (int_percent_done != Last_Whole_Percent_Done && i % ElementsBeforeDisplay == 0) { resultsprogress.Value = int_percent_done; - resultsprogress.Message = string.Format(" -> Reading Address: 0x{0:x8}", i); + //resultsprogress.Message = string.Format(" -> Reading Address: 0x{0:x8}", i); Last_Whole_Percent_Done = int_percent_done; - Application.DoEvents(); + //Application.DoEvents(); } } @@ -1368,9 +1368,9 @@ namespace RomCheater.Docking if (int_percent_done != Last_Whole_Percent_Done && i % ElementsBeforeDisplay == 0) { resultsprogress.Value = int_percent_done; - resultsprogress.Message = string.Format(" -> Reading Address: 0x{0:x8}", i); + //resultsprogress.Message = string.Format(" -> Reading Address: 0x{0:x8}", i); Last_Whole_Percent_Done = int_percent_done; - Application.DoEvents(); + //Application.DoEvents(); } } } |