I have a masked textbox with the need to have a min/max length set on them. When these conditions are met a button becomes enabled.
I was thinking of handling the TextChanged event to determine the length of the entered text and set the buttons enabled value.
Is there a better approach?
btnOK.Enabled = txtDataEntry.Text.Length >= MinDataLength && txtDataEntry.Text.Length <= MaxDataLength;
IMO TextChanged event is good place to handle this feature condition.
Update
Do it in KeyPress event like this:
// At your texbox valdating Event
Which approach could be even simpler than what you are suggesting?