i was wondering how to update a StaticText dynamically in wxpython? I have a script that goes every five minutes and reads a status from a webpage, then prints using wxpython the status in a static input. How would i dynamically, every 5 minutes update the statictext to reflect the status?

thanks alot

-soule

link|improve this question

feedback

2 Answers

up vote 2 down vote accepted

Use a wx.Timer. You bind the timer to an event and in the event handler you call the StaticText control's SetLabel.

See the following page for an example on timers:

http://www.blog.pythonlibrary.org/2009/08/25/wxpython-using-wx-timers/

As for setting the label, the code would look something like this:

self.myStaticText.SetLabel("foobar")

Hope that helps!

link|improve this answer
WOOHOO! that did the trick! genius you solved my problem! thank you mike, i greatly appreciate it!! – Soule Jul 27 '10 at 16:30
No problem. Glad you got it! – Mike Driscoll Jul 27 '10 at 18:47
feedback

Call the SetLabel method in your static text instance. So you don't run into conflict with the size, make sure your StaticText instance is created with enough space to write the future labels you'll want to write to it.

link|improve this answer
Thanks for the answer. The two strings it's gonna print is :"code available" and 'no code available". Do you have any example how to use the Setlabel? sorry, im a bit of a newbie. I got around this problem by restarting my program every five minutes, but i'm sure there's a more efficient way.. – Soule Jul 27 '10 at 13:11
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.