I have got a form with several NumericUpDown controls that I want them to run a function everytime the user types in them. I modified the ValueChanged events to TextChanged on all of them, but only 4 of the NUD.TextChanged events are working, all the others are acting like a ValueChanged event (even though I have searched through all the solution and there is no mention of ValueChanged AT ALL). I have copied one of the NUD controls that are working and pasted it. Renamed it, set up the events and they are just not working properly.
They do fire on TextChanged but they do not validate the value.
For example: Maximum 100, minimum 1, I input 200, it stays as 200 until I leave the control, then it sets it back to 100;
On the one that is working fine, as soon as I enter 2 and it would cause it to go to 200, it goes straight to 100 as the TextChanged event is fired.
I have checked that all of them have the "CausesValidation" property set to true.
I have been on this for over 4 hours now and it is getting a bit frustrating now... to the point of me thinking of recreate the form from scratch with all the over 70 controls...
EDIT:
Just found that what is happening is that the ones that are not working properly, they are just not limiting the typing of text to the minimum and maximum values during runtime.
I can fix it to each control by adding this to the TextChanged event method:
private void NUD_ValueOfF_TextChanged(object sender, EventArgs e)
{
if (NUD_ValueOfF.Value > NUD_ValueOfF.Maximum)
NUD_ValueOfF.Value = NUD_ValueOfF.Maximum;
CalculateAll();
}
But, as you can probably imagine, that is a mess and is quite inconvinient to do that for over 30 NUD, all one by one. Also, I want to understand why it is working fine for 4 of the NUD and not working for the rest, I just dont understand it. I have done exactly the same for all of them. The NUD on the other forms are all working fine. It is only those in this form that dont want to work properly.
edit2:
Event handler and button design (exactly the same for the ones that are working and those that arent working:
//
// NUD_ValueOfF
//
this.NUD_ValueOfF.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.NUD_ValueOfF.Increment = new decimal(new int[] {
1000,
0,
0,
0});
this.NUD_ValueOfF.Location = new System.Drawing.Point(219, 56);
this.NUD_ValueOfF.Maximum = new decimal(new int[] {
1000000000,
0,
0,
0});
this.NUD_ValueOfF.Name = "NUD_ValueOfF";
this.NUD_ValueOfF.Size = new System.Drawing.Size(120, 27);
this.NUD_ValueOfF.TabIndex = 172;
this.NUD_ValueOfF.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
this.NUD_ValueOfF.Value = new decimal(new int[] {
140000,
0,
0,
0});
this.NUD_ValueOfF.TextChanged += new System.EventHandler(this.NUD_ValueOfF_TextChanged);
I'd really appreciate it if somebody could give me a hand.
Thanks
BRs,
Lifebringr