[EMAIL PROTECTED] 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

-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to