Maximum text box length vb.net 2008

What is the maximum number of characters that can be placed in a text box in vb.net 2008?

+3
source share
1 answer

Assuming Windows Forms:

TextBox.MaxLength

This property can be used to limit the length of text entered into the control for values ​​such as postal codes and phone numbers. You can also use this property to limit the length of the entered text when data should be stored in the database so that the text entered in the control does not exceed the maximum length of the corresponding field in the database.

This property does not affect characters that are added programmatically.

0, , , .


( , . , . TextBox / .)

+3

Source: https://habr.com/ru/post/1724146/


All Articles