2021-05-25 11:46 PM
Thank you for helping.
How can I change the value displayed / set in the textArea to the value brought from the variable instead of the touchgfx setting value?
Wildcards are used for the textArea.
I wrote the following code in the View constructor, but it didn't show up.
Thank you.
int tmp, f10, f01
tmp = hoge.getValue ();
f10 = tmp / 10;
f01 = tmp% 10;
Unicode :: snprintf (textAreaFirstBuffer, TEXTAREAFIRST_SIZE, "% 02d", f10 * 10 + f01);
textAreaFirst.setWildcard (textAreaFirstBuffer);
textAreaFirst.invalidate ();
Solved! Go to Solution.
2021-05-25 11:55 PM
Hi,
Could you check in TouchGFX Designer in the "Texts" settings under the "Typographies" tab that you have set within the Wildcard Ranges "0-9" (or under Wilcard Characters 0123456789). This step is necessary for TouchGFX to be aware of what glyphs should be available in your application.
/Romain
2021-05-25 11:55 PM
Hi,
Could you check in TouchGFX Designer in the "Texts" settings under the "Typographies" tab that you have set within the Wildcard Ranges "0-9" (or under Wilcard Characters 0123456789). This step is necessary for TouchGFX to be aware of what glyphs should be available in your application.
/Romain
2021-05-26 01:42 AM
Hi Romain Dieleman
It was displayed when the Text part was <d>.
Thank you very much.