Am Thursday 08 September 2011 00:32:17 schrieb Muhammad Bashir Al-Noimi:
> On 07/09/2011 11:27 م, Hans-Peter Jansen wrote:
> On Wednesday 07 September 2011, 14:04:02 ad...@mbnoimi.net wrote:
>
> Hi guys,
>
> I wrote a tiny class for delaying splash screen in C++ but when I
> tired to re-write it i
The avoidable * imports Pete mentioned involve typing
from PyQt4 import QtGui
and then do:
> class Foo(QtGui.QLabel)
or
> from PyQt4.QtGui import QLabel
and then do:
> class Foo(QLabel)
Using one of the above causes not all modules to be loaded, whereas your *
imports actually does load
On 07/09/2011 11:27 م, Hans-Peter
Jansen wrote:
On Wednesday 07 September 2011, 14:04:02 ad...@mbnoimi.net wrote:
Hi guys,
I wrote a tiny class for delaying splash screen in C++ but when I
tired to re-write it in python it didn't work!
I got "Attribu
On Wednesday 07 September 2011, 14:04:02 ad...@mbnoimi.net wrote:
> Hi guys,
>
> I wrote a tiny class for delaying splash screen in C++ but when I
> tired to re-write it in python it didn't work!
>
> I got "AttributeError TeSplashScreen object has no attribut QFrate"
> although TeSplashScreen inh
On 07/09/2011 03:57 م, Nick Gaens wrote:
Can you please specify what line this
AttributeError is pointing at?
self.QFrame(self, Qt.FramelessWindowHint|Qt.WindowStaysOnTopHint)
--
Best Regards
Muhammad Bashir Al-Noimi
My Blog: http://mbnoimi.net
_
Can you please specify *what line* this AttributeError is pointing at?
On Wed, Sep 7, 2011 at 14:04, wrote:
> Hi guys,
>
> I wrote a tiny class for delaying splash screen in C++ but when I tired to
> re-write it in python it didn't work!
>
> I got "AttributeError TeSplashScreen object has no at
Hi guys,
I wrote a tiny class for delaying splash screen in C++ but when I
tired to re-write it in python it didn't work!
I got "AttributeError TeSplashScreen object has no attribut
QFrate" although TeSplashScreen inherited from QFrame
C