PC SOFT

FORUMS PROFESSIONNELS
WINDEVWEBDEV et WINDEV Mobile

Accueil → WINDEV Mobile 2024 → Edit Control Input Size (Characters) Limit
Edit Control Input Size (Characters) Limit
Débuté par Claire, 10 sep. 2018 21:05 - 5 réponses
Membre enregistré
48 messages
Posté le 10 septembre 2018 - 21:05
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 modifié, 10 septembre 2018 - 21:09
Membre enregistré
48 messages
Posté le 10 septembre 2018 - 21:06


Membre enregistré
794 messages
Popularité : +40 (42 votes)
Posté le 11 septembre 2018 - 07:12
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
Membre enregistré
48 messages
Posté le 11 septembre 2018 - 15:00
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?
Membre enregistré
794 messages
Popularité : +40 (42 votes)
Posté le 12 septembre 2018 - 23:43
Maybe you can try code.

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

EDT_Name..Size = 200


Rubén
Membre enregistré
48 messages
Posté le 13 septembre 2018 - 14:56
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 :)