PC SOFT

GRUPOS DE DISCUSSÃO PROFISSIONAL
WINDEVWEBDEV e WINDEV Mobile

Inicio → WINDEV Mobile 2024 → Edit Control Input Size (Characters) Limit
Edit Control Input Size (Characters) Limit
Iniciado por Claire, set., 10 2018 9:05 PM - 5 respostas
Membro registado
48 mensagems
Publicado em setembro, 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.
Mensagem modificada, setembro, 10 2018 - 9:09 PM
Membro registado
48 mensagems
Publicado em setembro, 10 2018 - 9:06 PM


Membro registado
795 mensagems
Popularité : +40 (42 votes)
Publicado em setembro, 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
Membro registado
48 mensagems
Publicado em setembro, 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?
Membro registado
795 mensagems
Popularité : +40 (42 votes)
Publicado em setembro, 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
Membro registado
48 mensagems
Publicado em setembro, 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 :)