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 wrote: Thank you very much, ER!...that worked... --- On *Tue, 3/22/11, Entity Reborn * wrote: From: Entity Reborn Subject: Re: [PyQt] Passing text from MainWindow to popup Dialog To: "James Polk" Cc: "pyqt@riverba

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 wrote: From: Entity Reborn Subject: Re: [PyQt] Passing text from MainWindow to popup Dialog To: "James Polk" Cc: "pyqt@riverbankcomputing.com" Date: Tuesday, March 22, 2011, 6:17 PM S

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 wrote: I have a scenario where my MainWindow needs to call and display a popup Window...and

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.

[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 window/dialog,..an