Re: Waiting for Connection

2006-02-27 Thread D
Thanks Kent! update_idletasks() does exactly what I needed, which as you mentioned was just to give it enough time to reconfigure the button. Doug -- http://mail.python.org/mailman/listinfo/python-list

Re: Waiting for Connection

2006-02-27 Thread Kent Johnson
D wrote: > I am trying to do the following using Python and Tkinter: > > 1) Display a window with 1 button > 2) When user clicks the button, Python attempts to call a function > that opens a socket and listens for a connection - what I want to do > is, if the socket has been successfully opened

Waiting for Connection

2006-02-27 Thread D
I am trying to do the following using Python and Tkinter: 1) Display a window with 1 button 2) When user clicks the button, Python attempts to call a function that opens a socket and listens for a connection - what I want to do is, if the socket has been successfully opened and the system is wai