I am currently writing a small GUI application in C++ using WxWidgets.
I have a wxStaticText widget which has a value in it.
How can I continuously update that value as my program is running?
I have tried using the Update UI event:
Connect(wxEVT_UPDATE_UI, wxUpdateUIEventHandler(MyFrame::Display))
although this updates the value, it is not smooth i.e. the values are "blinking" in between updates, is there any way I can stop this blinking and have a continuous, smooth update?
staticmean inwxStaticText? - Peter Wood