ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/RomCheater/trunk/RomCheater/Docking/FloatingMemorySearcher.cs
(Generate patch)

Comparing trunk/RomCheater/Docking/FloatingMemorySearcher.cs (file contents):
Revision 270 by william, Sun Jun 3 16:09:05 2012 UTC vs.
Revision 271 by william, Sun Jun 3 21:11:45 2012 UTC

# Line 923 | Line 923 | namespace RomCheater.Docking
923  
924          private void btnSearch_Click(object sender, EventArgs e)
925          {
926 +            this.SearchInProgess = true;
927 +            btnCancel.Enabled = true;
928 +            btnReset.Enabled = false;
929 +            btnSearch.Enabled = false;
930              this.FreezeResultsUpdate();
931          }
932 +
933 +        private void btnReset_Click(object sender, EventArgs e)
934 +        {
935 +            this.SearchInProgess = false;
936 +            btnSearch.Enabled = true;
937 +            btnCancel.Enabled = false;
938 +        }
939 +
940 +        private void btnCancel_Click(object sender, EventArgs e)
941 +        {
942 +            this.SearchInProgess = false;
943 +            btnCancel.Enabled = false;
944 +            btnSearch.Enabled = true;
945 +            btnReset.Enabled = true;
946 +        }
947      }
948   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines