RE: [PyQt] Re: Joystick Keyboard

2008-03-06 Thread Peter Shinners
> Have you considered using pygame module for your joystick controls? I don't believe the pygame.joystick module works well on all platforms when it does not have control of the main window. I think Windows is the primary problem specifically. I'm pretty sure on Linux this would work fine. __

Re: [PyQt] mem error in windows

2008-03-06 Thread Kermit
hi, try this for connection db= QSqlDatabase.addDatabase("QODBC") connectionString = "DRIVER={SQL Server};SERVER=localhost;UID=myuser;PWD= mypassw;DATABASE=dnsMySQL;" db.setDatabaseName(connectionString) if not db.open(): print db.lastError().text() sys.exit(1) Kermit 20

Re: [PyQt] PyKDE4-4.0.0 release available

2008-03-06 Thread Giacomo Lacava
Thanks Jim, this is great news! On Wed, Mar 5, 2008 at 5:46 PM, Jim Bublitz <[EMAIL PROTECTED]> wrote: > The first PyKDE4 tarball release is available at Riverbank Computing [...] cheers -- Giacomo Lacava ___ PyQt mailing listPyQt@riverbankcomputin

[PyQt] mem error in windows

2008-03-06 Thread Mario Daniel Carugno
Hi, i've installed pyqt4 + python2.5 in windows, and wrote a small script to test ODBC access to a MySQL table. The script is: from PyQt4 import QtSql import sys db = QtSql.QSqlDatabase.addDatabase("QODBC") db.setDatabaseName("dnsMySQL") db.setHostName("localhost") db.setUserName("myuser") db.set

[PyQt] Re: Joystick Keyboard

2008-03-06 Thread Neil Wallace
> > > From: > "Jon Chambers" > Date: > Wed, 5 Mar 2008 23:58:26 + > To: > pyqt@riverbankcomputing.com > > > > Hi, > I'm trying to write a program that creates an onscreen keyboard that > uses an 2-analogue stick joypad for input. I'm having issues becuase > the joystick needs to be polled r