You can go in table, and you can change the Length of the field.
But if the field must to have other length in the table, you can write code in the page where the field is, on Validate trigger ..
IF STRLEN("Uw referentie") > 21 THEN
MESSAGE('21 char is allowed in this field');//Use Text Constant instead direct text
You can go in table, and you can change the Length of the field.
But if the field must to have other length in the table, you can write code in the page where the field is, on Validate trigger ..
IF STRLEN("Uw referentie") > 21 THEN
MESSAGE('21 char is allowed in this field');//Use Text Constant instead direct text
Answers
You can go in table, and you can change the Length of the field.
But if the field must to have other length in the table, you can write code in the page where the field is, on Validate trigger ..
IF STRLEN("Uw referentie") > 21 THEN
MESSAGE('21 char is allowed in this field');//Use Text Constant instead direct text
BR