Is there a good way to display numbers in my GUI that are changing. I already have the numbers but I cant figure out what feature is meant for displaying information that changes.
You could use GLabel, GTextField and GTextArea controls for either text or numbers using their setText(...) method. Personally I would use GLabels for displaying numbers because this control can't be used for user input.
Answers
Using text()?
You could use GLabel, GTextField and GTextArea controls for either text or numbers using their setText(...) method. Personally I would use GLabels for displaying numbers because this control can't be used for user input.