vote up 0 vote down star

Hi,

I have set the MaxLength property of a textbox in my windows forms application to 10

I am populating the textbox by reading from a file. However if a read string which is more than 10 characters the textbox still gets populated. But when I manually try to enter a string it works fine (that is, it does not allow more than 10 characters to be entered).

Why is there a difference between these two behaviors? How can I populate my textbox from the file and still have the MaxLength property to be working?

Thanks, Viren

flag

43% accept rate

4 Answers

vote up 3 vote down check

From the TextBoxBase.MaxLengthProperty specs:

In code, you can set the value of the Text property to a value that has a length greater than the value specified by the MaxLength property. This property only affects text entered into the control at run time.

In other words, you must limit the amount of text in code when pulling from a data source.

For Example:

string text = "The quick blue smurf jumped over the brown fox.";
textBox1.Text = text.Substring( 0, textBox1.MaxLength );
link|flag
vote up 0 vote down

You'll have to limit it programatically. That's simply the way the browsers treat HTML. Sorry :(

Unfortunately, the HTML spec doesn't offer any guidance on this issue (that I can find) so the browser makers have settled on this behavior.

http://www.w3.org/TR/html401/interact/forms.html#h-17.4

link|flag
The question is regarding a windows forms app, not html. Though, the resolution is similar (almost identical :) – Metro Smurf Sep 11 at 15:57
YES Asaph. I am sorry that I forgot to mention C# Windows Form GUI application. My bad. Anyways its similar as pointed out by Metro Smurf – Viren Sep 11 at 16:02
vote up 0 vote down

At the very worst, you could try to limit your data to 10 characters when you are binding to the textbox:

txtMyTextbox.Text = Left(myData, 10)
link|flag
vote up 0 vote down

It's never wise to rely entirely on instant validation of values - you should always validate the final value as well. For example, i've seen people regularly using KeyUp/KeyDown/KeyPress events to disallow various characters, and then forgetting that people regularly use copy-and-paste (which negates the intended validation).

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.