Re: [pygtk] Attempting modal window in win32

2008-07-09 Thread Dave Aitel
Original-Nachricht Datum: Tue, 01 May 2007 20:28:07 -0400 Von: El Croata [EMAIL PROTECTED] An: pygtk@daa.com.au Betreff: [pygtk] Attempting modal window in win32 Hi, I've trying to perform a modal window in win32, but it doesn't work. I wrote an app for better explanation

Re: [pygtk] Attempting modal window in win32

2007-05-07 Thread Croata
: [pygtk] Attempting modal window in win32 Hi, I've trying to perform a modal window in win32, but it doesn't work. I wrote an app for better explanation of the case: # Start test.py snip # End test.py The steps for performing the case were: 1) Run python test.py 2) Click on button

Re: [pygtk] Attempting modal window in win32

2007-05-02 Thread Volker Helm
In this test you can't edit the Entry if the child is present. Bye, Volker Original-Nachricht Datum: Tue, 01 May 2007 20:28:07 -0400 Von: El Croata [EMAIL PROTECTED] An: pygtk@daa.com.au Betreff: [pygtk] Attempting modal window in win32 Hi, I've trying to perform a modal window

[pygtk] Attempting modal window in win32

2007-05-01 Thread El Croata
Hi, I've trying to perform a modal window in win32, but it doesn't work. I wrote an app for better explanation of the case: # Start test.py import gtk w1 = gtk.Window(gtk.WINDOW_TOPLEVEL) w1.connect('delete_event', lambda w, e: gtk.main_quit()) w2 = gtk.Window(gtk.WINDOW_TOPLEVEL)