Is it possible to change a text value whitout "???"
- June 10, 2025
- 2 replies
- 443 views
Hello.
I try to write a dynamic changed value in a text area.
But it isn't possible to make a value output.
I get allways "???" instead of my value.
I used the video from ST: https://support.touchgfx.com/academy/how-to/textarea
and try to change the text on runtime, but i get allways "????" as result. Even if i thy to write a unicode-string, a char string, a unicode-value...
The only way to change the text at runtime is to use a static text and an additional wildcard text.
counter++;
Unicode::snprintf(Screen1View::textArea1Buffer, Screen1View::TEXTAREA_SIZE, "%d", counter);
textArea1.invalidate();If i use only a Wildcard, all characters are a "?".
If i use two text's -> Auto-generated fixed Text "RPM:<value> and a Wildcard1, most of the characters are a "?" (RPM: is correct).
Is there a way to suppress the question marks, or does TouchGFX always display a question mark when trying to change a text or value?
