On Thu Oct 25 06:45:38 CEST 2007, Lawrence Shafer wrote:
> I am trying to convert a program with hand coded QT over to using UI
> files from QT Designer. I am getting the error below and do not
> understand what's going on.
This error occurs when an object referred to by Python and Qt is delete
Here's the whole code. Any help appreciated!
http://shaferlabs.pastebin.com/m32c82193
Also I was thinking I could set the progressbar to 64% like this.
self.progressBar.setProperty("value",QtCore.QVariant(64))
but it doesn't work. (AttributeError: progressBar) I think it has
something to do with
"Lawrence Shafer" <[EMAIL PROTECTED]> wrote
> files from QT Designer. I am getting the error below and do not
> understand what's going on.
Neither do I but try debugging it to find out which object causes
the error
> File "atf.py", line 56, in open
>if self.isUntitled and self.textBrowser
I am trying to convert a program with hand coded QT over to using UI
files from QT Designer. I am getting the error below and do not
understand what's going on. I have a feeling I need to add self. to
something in here, but I'm not sure what. Is this enough code for you to
see whats going on??