2020-05-02 05:30 AM
Hello,
I made a simple project to test TouchGFX, when I move the slider I got error values, the initial value I’ve set in TouchGFX Designer is 25, so when I move the slider if the value contains 2 or 5 it will show with an other character
this is is my code:
void Screen1View::SliderChanged(int value)
{
unicode::snprintf(textArea1Buffer, TEXTAREA1_SIZE, “%d�?,value );
textArea1.setWildcard(textArea1Buffer);
textArea1.invalidate();
}
2020-05-02 08:29 AM
Hi,
you should add all digits you want to use (0-9) to your project (Texts -> Typographies -> Wildcard ranges).
2020-05-02 08:32 AM
Where can I find that?
2020-05-02 08:46 AM
In your Designer (Texts -> Typographies -> Wildcard ranges)
2020-05-02 09:52 AM
Hi,
Please Check below Image.
Karan
2020-05-03 02:06 PM
Thank you