Tony Cappellini wrote: > I want to call the function which talks to CVS after the gui is > displayed, but without formal having to do anything.
here's one way to do it:
root = Tk()
# populate UI
# run event loop until widget is properly displayed
root.wait_visibility()
# start talking to CVS
root.mainloop()
</F>
_______________________________________________
Tkinter-discuss mailing list
[email protected]
http://mail.python.org/mailman/listinfo/tkinter-discuss
