Hi,
Again, I searched the API ref and I didnt find what I was looking for - how do I display an integer number with the GUI ?
Displaying A Number with the GUI
You can turn it into a string, and then using c_str() function display it as static text
Code: Select all
stringw temp;
temp+=5;
setText(temp.c_str())