RE: Web Archtecture using tow layers in Phyton

2007-05-24 Thread Wagner Garcia Campagner
-list@python.org Subject: Re: Web Archtecture using tow layers in Phyton On 5/23/07, Wagner Garcia Campagner <[EMAIL PROTECTED]> wrote: > Hello, > > I need to develop an web applications that meet the following requirements: > > - 2 layers: the first one is the user interfac

Web Archtecture using tow layers in Phyton

2007-05-24 Thread Wagner Garcia Campagner
Hello, I need to develop an web applications that meet the following requirements: - 2 layers: the first one is the user interface (browser) and the second one is the interaction with the operacional system of the server. - the second layer must be developed using Python. I'd like to know if it

Re: Dynamic RadioButton creation with Python + Qt

2006-08-21 Thread Wagner Garcia Campagner
Thanks Fredrik, Your suggestion solved my problems! Thanks, Wagner. >From: Fredrik Lundh <[EMAIL PROTECTED]> >To: python-list@python.org >Subject: Re: Dynamic RadioButton creation with Python + Qt >Date: Mon, 21 Aug 2006 16:20:09 +0200 > >Wagner Garcia Campagner

Dynamic RadioButton creation with Python + Qt

2006-08-21 Thread Wagner Garcia Campagner
Hello, I'm trying to create dynamic RadioButton as follows: for i in out.keys(): msg = "radioButton_" + str(i) msg2 = 20 * x msg = QRadioButton(self.buttonGroup_interfaces, msg) msg.setGeometry(QRect(30,msg2,121,23)) msg.setTect(i) x += 1 The problem is that Python is cre