We are trying to change the builtin browser component from TWebBrowser to TChromium. It is used mostly for displaying maps from Google and Bing. The communication from the javascript to Delphi is done with COM.
When trying to change the browser to TChromium it fails to compile this code.
if supports(fBrowser.defaultInterface, IOleObject, fOLE) then
because defaultInterface is missing from TChromium.
EDIT: Is it possible to still communicate from javascript to Delphi with Chromium? I'm aware of that they are not compatible and I have to rewrite code. I just want to know how to get a result from javascript to delphi. Note I am using Delphi 2007 so the extended RTTI cannot be used.
Regards Roland Bengtsson
TChromiumeven supportsIOleObject? – David Heffernan Jul 27 '11 at 11:46IOleObject. What are you usingTWebBrowser.DefaultInterfacefor? If you have a specific problem try to describe it in more detail. Perhaps it's possible to achieve the same result with Chromium in a different way. – TOndrej Jul 27 '11 at 11:51TWebBrowser. Ie: copy-pasted code designed for TWebBrowser will not work. – Cosmin Prund Jul 27 '11 at 12:00