Zitat:
Undefinierter Bezeichner: "IHTMLDocument2"
Das Interface IHTMLDocument2 ist in der
Unit MSHTML deklariert.
Zitat:
Undefinierter Bezeichner: "WB_DocumentAssigned"
Diese Funktion wäre auch im Source Code des Demos zu finden.
Sie überprüft, ob ein Document geladen ist.
Du kannst es auch so schreiben:
Delphi-Quellcode:
if Assigned(WB.Document) then
if Assigned((WB.Document as IHTMLDocument2).body) then
if Value then
(WB.Document as IHTMLDocument2).body.style.overflow := 'hidden'
else
(WB.Document as IHTMLDocument2).body.style.overflow := '';