[EMAIL PROTECTED] wrote:
>>I want to do the same thing in Python/Tkinter:
>>
>> # Wait for network to recognize the workstation:
>> while os.system("slist") != 0:
>> self.notify["fg"] = randcolor()
>> # how do I refresh label l3 at this point?
>>
Terrance N. Phillip wrote:
> In VB, an easy way I indicate progress is something like
> do while
> lblNotify.foreground = randomcolor
> lblNotify.refresh <---
>
> loop
>
> I want to do the same thing in Python/Tkinter:
>
> #
In VB, an easy way I indicate progress is something like
do while
lblNotify.foreground = randomcolor
lblNotify.refresh <---
loop
I want to do the same thing in Python/Tkinter:
# Wait for network to recognize the workstat