I fixed it.
If anyone else gets this and doesn't know.
add the line
qApp.processEvents()
after splash.show()
darryl
Darryl Wallace wrote:
Has anyone had trouble getting splash screen to display properly in
Windows? I imagine this is a Qt problem and not a PyQt problem but I
thought I w
Has anyone had trouble getting splash screen to display properly in
Windows? I imagine this is a Qt problem and not a PyQt problem but I
thought I would ask here as well as Qt support.
I have written a code like this:
##
from PyQt4 import QtGui, Qt
import sys
import os
There's a comment in siplib.c:5300ish in the sip_api_is_py_method
function that I'll reproduce here:
/*
* Note that the callable is never garbage collected. The main
* reason for this is that it's not possible to get hold of the
* method cache without make incompatible changes to the SIP
* AP
hi all,
new in pyQT, i've little problem
i've an error with QDomNode.toString() function
how i can print all document or a part of document to a buffer for file or
network transfert
thx for help
Kermit
___
PyQt mailing listPyQt@riverbankcomputin
Hello,
Is it possible to embed a UNO component (in my case: The document
editor of Writer) in a Qt app? I have a feeling that this can be done
with ActiveQt but I'm not sure.
Does anyone have any pointers how to do this?
Regards,
--
Aaron "Optimizer" Digulla a.k.a. Philmann Dark
"It's not
Hi Adonay,
> Hi, I'm programing a little app which needs to open more than one
> time, the same window.
> Now I make an import and instance the window like this.
>
> from new_window import *
Bad idea. As a rule of thumb, you don't want to use 'import *' when you
can avoid it. It's okay while you