Hi,
I created a piece of code which takes the content of a single line textbox (8 characters) and put it in an array:
char string[9];
memset (stringa, 0, 9);
GetCtrlVal (panel, CTRL, stringa);
After saving the string in a file, I reload it and write it to the same textbox:
ReplaceTextBoxLine (panel, CTRL, 0, stringa);
At this point, if I read again the string, I find the character 'new line' (ASCII code: 10) added at the end of the string.
Does anyone know why ?
Thank you,
Massimiliano Conti.