Re: Newbie wxpython staticbitmap help please

2006-06-16 Thread janama
Thanks Jean this now makes sense, really appreciate your time and effort mate. def __init__(self, parent): self._init_ctrls(parent) self.t1 = wx.Timer(self) self.t1.Start(2000) # 2 seconds self.Bind(wx.EVT_TIMER, self.OnTest1Timer) self.OnTest1Timer(sel

Re: Newbie wxpython staticbitmap help please

2006-06-16 Thread jean-michel bain-cornu
Hi, janama a écrit : > jean-michel bain-cornu wrote: >> Why won't you write it yourself using the demo ? >> It's clear and well documented. >> Regards, >> jm > > Hi, have been just trying for 5 hours with the timer demo in wx, i just > havnt clicked with how to tie it in together, > > I know (thi

Re: Newbie wxpython staticbitmap help please

2006-06-15 Thread jean-michel bain-cornu
> Thanks for any help with any of this I have no time at the moment. I'm going to try to give you an answer tomorrow morning (june 16) (if nobody did of course). See you jm -- http://mail.python.org/mailman/listinfo/python-list

Re: Newbie wxpython staticbitmap help please

2006-06-15 Thread janama
jean-michel bain-cornu wrote: > Why won't you write it yourself using the demo ? > It's clear and well documented. > Regards, > jm Hi, have been just trying for 5 hours with the timer demo in wx, i just havnt clicked with how to tie it in together, I know (think) i need the following features fr

Re: Newbie wxpython staticbitmap help please

2006-06-14 Thread jean-michel bain-cornu
janama a écrit : > Can somewhone add a wx.Timer example to this to make it check > if the file exists every minute or so , instead of clicking the button > to check and update this? Or is there a better way of auto updating my > little gui apps StaticBitmap if a file exists? Why won't you

Newbie wxpython staticbitmap help please

2006-06-14 Thread janama
Hi, how do i go about having my little gui (boa) app updating (changing) the bitmap used in a StaticBitmap automatically. In the example below when i click the button the app check checks to see if a file exists and if so it swaps the StaticBitmap in the gui to another bitmap. Can somewho