diff --git a/BizHawk.MultiClient/tools/RamWatch.cs b/BizHawk.MultiClient/tools/RamWatch.cs index c202dae6d8..5775f9ed90 100644 --- a/BizHawk.MultiClient/tools/RamWatch.cs +++ b/BizHawk.MultiClient/tools/RamWatch.cs @@ -19,10 +19,7 @@ namespace BizHawk.MultiClient //TODO: //Make a context menu for add/remove/Dup/etc, make the context menu & edit watch windows appear in relation to where they right clicked //TODO: Call AskSave in main client X function - //Address can be changed, when that event is triggered, open the edit watch dialog //Multiselect is enabled but only one row can be highlighted by the user - //Make it clear that on edit/new/duplicate watch, address is hex - //Validate address box as legit hex number //When using ListView index, validate the user has selected one! //DWORD display diff --git a/BizHawk.MultiClient/tools/RamWatchNewWatch.Designer.cs b/BizHawk.MultiClient/tools/RamWatchNewWatch.Designer.cs index c7348f9b11..c86e316453 100644 --- a/BizHawk.MultiClient/tools/RamWatchNewWatch.Designer.cs +++ b/BizHawk.MultiClient/tools/RamWatchNewWatch.Designer.cs @@ -56,14 +56,14 @@ this.label1.AutoSize = true; this.label1.Location = new System.Drawing.Point(9, 9); this.label1.Name = "label1"; - this.label1.Size = new System.Drawing.Size(48, 13); + this.label1.Size = new System.Drawing.Size(62, 13); this.label1.TabIndex = 0; - this.label1.Text = "Address:"; + this.label1.Text = "Address: 0x"; // // label2 // this.label2.AutoSize = true; - this.label2.Location = new System.Drawing.Point(19, 36); + this.label2.Location = new System.Drawing.Point(9, 35); this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(38, 13); this.label2.TabIndex = 1; @@ -71,7 +71,7 @@ // // AddressBox // - this.AddressBox.Location = new System.Drawing.Point(60, 6); + this.AddressBox.Location = new System.Drawing.Point(69, 6); this.AddressBox.Name = "AddressBox"; this.AddressBox.Size = new System.Drawing.Size(100, 20); this.AddressBox.TabIndex = 2; @@ -79,7 +79,7 @@ // // NotesBox // - this.NotesBox.Location = new System.Drawing.Point(60, 33); + this.NotesBox.Location = new System.Drawing.Point(69, 32); this.NotesBox.Name = "NotesBox"; this.NotesBox.Size = new System.Drawing.Size(100, 20); this.NotesBox.TabIndex = 3; diff --git a/BizHawk.MultiClient/tools/RamWatchNewWatch.cs b/BizHawk.MultiClient/tools/RamWatchNewWatch.cs index 7a931cf76e..cce2ca627a 100644 --- a/BizHawk.MultiClient/tools/RamWatchNewWatch.cs +++ b/BizHawk.MultiClient/tools/RamWatchNewWatch.cs @@ -103,8 +103,16 @@ namespace BizHawk.MultiClient { //Put user settings in the watch file userSelected = true; - - watch.address = int.Parse(AddressBox.Text, NumberStyles.HexNumber); + if (InputValidate.IsValidHexNumber(AddressBox.Text)) + watch.address = int.Parse(AddressBox.Text, NumberStyles.HexNumber); + else + { + MessageBox.Show("Not a valid address (enter a valid Hex number)", "Invalid Address", MessageBoxButtons.OK, MessageBoxIcon.Error); + AddressBox.Focus(); + AddressBox.SelectAll(); + + return; + } if (SignedRadio.Checked) watch.signed = asigned.SIGNED;