CDHTMLDialog and Internet Explorer 7

EDN Admin

Well-known member
Joined
Aug 7, 2010
Messages
12,794
Location
In the Machine
I have an MFC application that uses CDHTMLDialog to display HTML, but when IE7 is installed on the machine, the images specified in the html page are not being displayed at all
For example:
<html>
<style>
body
{
 background-image: url(file:bg.png);
 background-position: center;
 background-repeat: no-repeat;
}
</style> 
<BODY>
This is an image: <img src="file:myimage.png
</BODY>
</HTML> 
This works fine on previous versions of IE but under IE 7 the images arent displayed.. Can anybody help?
thanks,
Ronan

View the full article
 
Back
Top