> 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.
__
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
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
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
>
>
> 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