Hi,

I want to do the following (with Qt4.3.2/Windows/VS2005 Pro):
Display an Icon in a widget that responds to a click by opening an external browser with a specific web page.

What i do:

- Create a QLabel widget insert it into my parent widget.
- I activate mouse click sensitivity.
- I set the QLabel-Text to something similar like:
<a href="http://xyz.com"><img src=url(:/MYIMAGE.png)></a>

Well, the problem arises with the IMG tag. What i want to do is address an image located in my qt resources. BUT instead of displaying MYIMAGE.png Qt does display a kind of dummy image (a document icon) that (at least) reacts as expected.

What am i doing wrong with the syntax here?
How do i correctly address the image that is stored in my Qt resources from the qlabel text string?

Of course i could also do all this above stuff by hand implementing my own qt classes...but it would of course be much better to get this run with QLabel!

Thanks for your all help in advance,
frank