How to kill easygui dialog?

Martin Franklin mfranklin1 at gatwick.westerngeco.slb.com
Wed Jul 20 10:30:41 EDT 2005


utabintarbo at gmail.com wrote:
> William,
> 
> Thanks for the reply. No flames, but I am running on both Linux and
> Windows, so I need a x-platform  solution. I thought I had it with
> easygui...
> 
> Must try some other ideas....
> 


Can you post an example... the following works for me...


 >>> import easygui
 >>> while 1:
...     rv = easygui.enterbox()
...     if rv:
...         print "Done"
...         break
...
...
Done




More information about the Python-list mailing list