wxpython automate progress bar

2007-09-08 Thread Jimmy
Hi, I want a progress bar to increase automatically, so I wrote code like this: current = 0 while True: if current == 100: current = 0 self._gauge.SetValue(current)

Re: wxpython automate progress bar

2007-09-08 Thread Chris Mellon
On 9/8/07, Jimmy [EMAIL PROTECTED] wrote: Hi, I want a progress bar to increase automatically, so I wrote code like this: current = 0 while True: if current == 100: current = 0