Re: [PyQt] Passing text from MainWindow to popup Dialog

2011-03-23 Thread James Polk
Thank you very much, ER!...that worked... --- On Tue, 3/22/11, Entity Reborn entityreb...@gmail.com wrote: From: Entity Reborn entityreb...@gmail.com Subject: Re: [PyQt] Passing text from MainWindow to popup Dialog To: James Polk jpolk5...@yahoo.com Cc: pyqt@riverbankcomputing.com pyqt

Re: [PyQt] Passing text from MainWindow to popup Dialog

2011-03-23 Thread Entity Reborn
Your welcome :) On Mar 23, 2011, at 4:44 PM, James Polk jpolk5...@yahoo.com wrote: Thank you very much, ER!...that worked... --- On *Tue, 3/22/11, Entity Reborn entityreb...@gmail.com* wrote: From: Entity Reborn entityreb...@gmail.com Subject: Re: [PyQt] Passing text from MainWindow

[PyQt] Passing text from MainWindow to popup Dialog

2011-03-22 Thread James Polk
I have a scenario where my MainWindow needs to call and display a popup Window...and while the window is open, processing continues in the main application, and during processing needs to send a string or two of text to the popup dialog. I know how to call and display the popup

Re: [PyQt] Passing text from MainWindow to popup Dialog

2011-03-22 Thread Hans-Peter Jansen
On Tuesday 22 March 2011, 22:39:12 James Polk wrote: I have a scenario where my MainWindow needs to call and display a popup Window...and while the window is open, processing continues in the main application, and during processing needs to send a string or two of text to the popup dialog. I

Re: [PyQt] Passing text from MainWindow to popup Dialog

2011-03-22 Thread Entity Reborn
Store your popup as a variable in the main dialog class, (self.popup = MyPopup()), and then later you can access that dialog using self.popup from your main form. On Mar 22, 2011, at 2:39 PM, James Polk jpolk5...@yahoo.com wrote: I have a scenario where my MainWindow needs to call and display a