I am using Databindings in my app in this way:
textBox1.Databindings.Add(new Binding("Text", myObject, "myObjectField"));
Everything is OK, when field in database is type of varchar. Then size of field is defined by me. Problem is when field in database is text or ntext field. Database says that the size of this field (text, ntext) equals 16 and then textBox1.MaxLength is 16 causing fault working.
What should I do to resolve this problem?