PC SOFT

PROFESSIONAL NEWSGROUPS
WINDEVWEBDEV and WINDEV Mobile

Home → WINDEV Mobile 2024 → Edit Control Input Size (Characters) Limit
Edit Control Input Size (Characters) Limit
Started by Claire, Sep., 10 2018 9:05 PM - 5 replies
Registered member
48 messages
Posted on September, 10 2018 - 9:05 PM
I am having trouble with one of our edit controls in WM 22 not limited the character count even though in the describing an edit control box, the "input size (characters):" is set to 200. It seems to be allowing an unlimited number of characters to be typed in and causing data to be submitted with the comments being cut off. Not quite sure why this isn't working properly - not even sure it has worked right from the beginning! Any help would be appreciated.
Message modified, September, 10 2018 - 9:09 PM
Registered member
48 messages
Posted on September, 10 2018 - 9:06 PM


Registered member
794 messages
Popularité : +40 (42 votes)
Posted on September, 11 2018 - 7:12 AM
Hi. If you look at that option has a gray background, so it is not available for any of the configurations of your project.

Rubén
Registered member
48 messages
Posted on September, 11 2018 - 3:00 PM
Hi Rubén, so it has to be configured within the code of that window even though it allows me to edit the number in that box?
Registered member
794 messages
Popularité : +40 (42 votes)
Posted on September, 12 2018 - 11:43 PM
Maybe you can try code.

// Modify the maximum number of characters found in the "EDT_Name" control

EDT_Name..Size = 200


Rubén
Registered member
48 messages
Posted on September, 13 2018 - 2:56 PM
Rubén Sánchez Peña wrote:
Maybe you can try code.

// Modify the maximum number of characters found in the "EDT_Name" control

EDT_Name..Size = 200


Rubén


Rubén - Thank you! This fixed the issue :)