Hi,
danke für deine Antwort. Leider funktioniert das so nicht
. Die Bilder werden unter Win 7 nicht angezeigt (Anwendung liegt auf dem Desktop - ö und Leerzeichen im Pfad). Mein
HTML sieht so aus:
Delphi-Quellcode:
function htmlHeader() :
string;
begin
result := '
<?xml version="1.0" ?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"' + #13#10 +
'
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">' + #13#10 +
'
<html xmlns="http://www.w3.org/1999/xhtml">'+ #13#10 +
'
<head>'+ #13#10 +
'
<title>' + applicationName + '
</title>' + #13#10 +
'
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />' + #13#10 +
'
<link rel="stylesheet" type="text/css" href="' + htmlpath + '
style.css" />'+ #13#10 +
'
</head>' + #13#10 +
'
<body>' + #13#10 +
'
<div id="headerlogo">' + #13#10 +
'
<img src="' + htmlpath + '
pics2.png" alt="logo"> ' + #13#10 +
'
</div>' +
'
<div id="headername">' + applicationName + '
</div>' +
'
<div id="topmenu">' +
'
<a href="test://1">add</a> | <a href="test://2">stack</a> | <a href="test://3">pref</a> | <a href="test://4">help</a> | <a href="test://5">info</a>' + #13#10 +
'
</div>' + #13#10 +
'
<div style="clear : both;"></div>' + #13#10 +
'
<div id="content">';
end;
Mit Pfaden ohne Sonder- und Leerzeichen geht das ohne Probleme.
Viele Grüße ...