https://dl.dropbox.com/u/21125662/compilation/OsuModTool.txt
It doesn't really work - text didn't change - why it doesn't work? It doesn't give me any error (but print prints what it should)
https://dl.dropbox.com/u/21125662/compilation/post_adder_win.txt

I call function through keyboard event

Recommended Answers

All 3 Replies

Insert code in your post, do not give external unfunctioning links!

# a very simple template to test PyQT widgets
# PyQT free from:
# http://www.riverbankcomputing.co.uk/software/pyqt/download
# used Windows installer PyQt-Py3.2-x86-gpl-4.8.4-1.exe
# tested with PyQT 4.8 and Python 3.2

from PyQt4.QtCore import *
from PyQt4.QtGui import *

app = QApplication([])

# ----- start your widget test code ----


# create the label
label = QLabel()
label.show()
# insert a text string
label.setText('hello all together')


# ---- end of widget test code -----

app.exec_()

So sorry for mistake, i have already discover why it wasn't working, and deleted files from my dropbox folder, it's why it doesn't work. i just used class() instead variable = class(), class.ui.etc.etc.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.