I used PyQt4 designer to add QSpinBox Widget to my project. the QSpinBox Widget contains an integer number (counter).
I'm updating this number with this setValue() method.
I want to replace this integer number with the same number just with commas. so now it will be a string and not integer.
is it possible to add a string (integer with commas) to QSpinBox Widget? if no, what widget should I use? and what are the methods that I should use? thanks.