On Tuesday 28 June 2011, 01:08:38 James Polk wrote:
> I like Designer and have been using it more and more...
> but I've been noticing that many times what you see in the Designer
> window ends up not matching when you run your program later.
>
> For example, small offsets in X and Y...look good in
Thanks for the info. Do you know any decent example, tutorial, documents
etc. about qt network stack?
2011/6/28 Andreas Pakulat
> On 28.06.11 06:26:24, Yaşar Arabacı wrote:
> > Hi,
> >
> > I am havin an encoding problem. If you have read my earlier post, I was
> > doing a simple chat applicatio
On 28.06.11 06:26:24, Yaşar Arabacı wrote:
> Hi,
>
> I am havin an encoding problem. If you have read my earlier post, I was
> doing a simple chat application. Here is how it goes.
You're not converting your data correctly. On the sending side you do it
properly, decoding to utf-8 and then sendin
Hi,
I am havin an encoding problem. If you have read my earlier post, I was
doing a simple chat application. Here is how it goes.
===
Client Class
===
def on_lineEdit_returnPressed(self):
text= self.ui.lineEdit.text()
self.ui.lineEdit.selectAll()
self.ui.lineEdit.cut()
hi,
I am pyqt beginner and followed tutorials on the internet to learn it until
recently. Then I have wanted to develop my own application. I am developing
a simple chat application.
I want to have 2 windows running independently (in other words two separate
applications), one for server and one
I like Designer and have been using it more and more...
but I've been noticing that many times what you see in the Designer window
ends up not matching when you run your program later.
For example, small offsets in X and Y...look good in Designer, but don't end
up in the same place in the program
On 27/06/2011 17:23, Giuseppe Corbelli wrote:
> Hi all
>
> I have two boxes:
> Linux with PyQt-GPL 4.8.3/Qt 4.7.0/Python 2.6.6
> Windows 7 with PyQt-Commercial 4.8.4/Qt 4.7.3/ActivePython 2.6.6.18
Forgot:
sip 4.12.1 on Linux machine
sip 4.12.3 on Linux machine
--
Giuseppe Corbelli
W
Hi all
I have two boxes:
Linux with PyQt-GPL 4.8.3/Qt 4.7.0/Python 2.6.6
Windows 7 with PyQt-Commercial 4.8.4/Qt 4.7.3/ActivePython 2.6.6.18
Consider the following snippet:
--->
#!/usr/bin/python
# -*- coding: utf-8 -*-
from PyQt4 import QtCore
class CX(QtCore.QObject):