PC SOFT

FOROS PROFESIONALES
WINDEVWEBDEV y WINDEV Mobile

Inicio → WEBDEV 2024 → Multi Line Editor
Multi Line Editor
Iniciado por Carlos Antunez, 23,ago. 2014 22:23 - 2 respuestas
Publicado el 23,agosto 2014 - 22:23
Hi and thanks in advanced for your help

I am trying to create a History field, and I am using a multi line editor, so I can add Lines Dynamically when the user do something on the form, however the line always gets overwritten.

This is what I need to accomplish
If the user changes a value in a combo Box,

Edit_History = "*** Action Added ***" + CR
Edit_history = "The user Chnaged ComboBox from Apples to Bananas" + CR
Edit_histor = "*** End of Action ***" +CR




Some like that. But the above toes not do a Carriage Return, it always overwrite the first Line and I only get on entry which is the last one *** End of Action ***

Thanks for your help

Best regards,

Carlos
Miembro registrado
49 mensajes
Publicado el 25,agosto 2014 - 09:22
Hi Carlos

This is very basic, you had to add the value you want to the actual value of the control.

Edit_History += "*** Action Added ***" +CR


OR...

Edit_History = Edit_History + "*** Action Added ***" +CR
Publicado el 02,septiembre 2014 - 03:19
Hi Rafadev,

Thank you so much for your help it works.

Once again my apologies for the late reply to your help, as I mentioned in your previous MD5 help I had some family issues I had to take care of.

Thanks again,

Best regards,

Carlos