I want to use the MSHTML interfaces IHTMLDocument2
, IHTMLElement2
, IHTMLElementCollection
, etc with TWebBrowser
.
In Document := WebBrowser.Document as IHTMLDocument2;
when TWebbrowser.SelectedEngine = IEOnly
then everything is fine.
But, when I changed the property TWebBrowser.SelectedEngine = EdgeOnly
or EdgeIfAvailable
then WebBrowser.Document
is nil.
How can I fix this?