Also nochmals: Der body tag eines geladenen
HTML dokuments sieht so aus:
nun soll er so manipuliert werden, dass er so aussieht:
Code:
<body oncontextmenu="return false">
Auf das Dokument soll via IHTMLDocument2 zugegriffen werden.
Code:
Doc := Webbrowser1.Document as IHTMLDocument2; // Doc: IHTMLDocument2;
Doc.Body.setAttribute('oncontextmenu','return false',0);
Geht das überhaupt mit setAttribute?