Untested on Windows, but this should do it.

On Sat, Feb 26, 2011 at 8:53 AM, Florian Höch <[email protected]> wrote:
> Am 22.02.2011 13:14, schrieb Damien Elmes:
>>
>> Ah, I'd tried the assembly's manifest. Unfortunately when I updated
>> the plugins with winmanifest.py and the manifest you provided, the
>> plugins broke again. I tried adding a combination of the MS manifest
>> file and DLLs back to the directory, but that didn't help. I checked
>> that the version number and key token match the DLLs and manifest
>> file.
>
> Ok, that's unfortunate. Can you provide a minimal example which shows the
> problem?
>
> Regards
> --
> Florian Höch
>
> --
> You received this message because you are subscribed to the Google Groups
> "PyInstaller" group.
> To post to this group, send email to [email protected].
> To unsubscribe from this group, send email to
> [email protected].
> For more options, visit this group at
> http://groups.google.com/group/pyinstaller?hl=en.
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"PyInstaller" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/pyinstaller?hl=en.

import sys
from PyQt4.QtCore import *
from PyQt4.QtGui import *
from PyQt4.QtWebKit import QWebView

app = QApplication(sys.argv)
mw = QMainWindow()
wv = QWebView(mw)
wv.setHtml("""
<html><body>test<br>
<img src="http://www.harlemfur.com/images/Dog_Olive.jpg"; alt="loading"></html>""")
mw.setCentralWidget(wv)
mw.show()

app.exec_()

Reply via email to