Re: [PyQt] Call a window from other parent window

2007-10-17 Thread Michael Towers
A couple of (also untested) tweaks? Mark Summerfield wrote: On 2007-10-16, Sergio Jovani Guzmán wrote: Hi all! I am learning PyQt and I have a question. I have two classes, one for each widget: == class Main(QMainWindow): def __init__(self): QMainWi

Re: [PyQt] Call a window from other parent window

2007-10-16 Thread Mark Summerfield
On 2007-10-16, Sergio Jovani Guzmán wrote: > Hi all! > > I am learning PyQt and I have a question. > > I have two classes, one for each widget: > > == > class Main(QMainWindow): > def __init__(self): > QMainWindow.__init__(self) > loadUi("frmmain.ui

[PyQt] Call a window from other parent window

2007-10-16 Thread Sergio Jovani Guzmán
Hi all! I am learning PyQt and I have a question. I have two classes, one for each widget: == class Main(QMainWindow): def __init__(self): QMainWindow.__init__(self) loadUi("frmmain.ui", self) class Conectar