PC SOFT

FOROS PROFESIONALES
WINDEVWEBDEV y WINDEV Mobile

Inicio → WINDEV Mobile 2024 → Edit Control Input Size (Characters) Limit
Edit Control Input Size (Characters) Limit
Iniciado por Claire, 10,sep. 2018 21:05 - 5 respuestas
Miembro registrado
48 mensajes
Publicado el 10,septiembre 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.
Mensaje modificado, 10,septiembre 2018 - 21:09
Miembro registrado
48 mensajes
Publicado el 10,septiembre 2018 - 21:06


Miembro registrado
794 mensajes
Popularité : +40 (42 votes)
Publicado el 11,septiembre 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
Miembro registrado
48 mensajes
Publicado el 11,septiembre 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?
Miembro registrado
794 mensajes
Popularité : +40 (42 votes)
Publicado el 12,septiembre 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
Miembro registrado
48 mensajes
Publicado el 13,septiembre 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 :)