I have a Delphi app that shows a group of webpages in a TWebBrowser control. Its a kiosk type app so a user touches a button on the side and it shows a particular webpage in a tab. I am having some problems with certain sites and getting IE javscript errors.

I would like to know if there is a way I can embed a chrome or firefox browser in a tab or on a form from Delphi?

This question seems to answer the issue I had with getting javascript errors.

link|improve this question

you could also just move up to modern IE – David Heffernan Sep 16 '11 at 20:37
Surely it uses the ie that's on the box? I have the most up to date. – Toby Allen Sep 16 '11 at 22:52
IE6 (what XP shipped with) is pretty poor at Javascript. IE9 is much better. Which IE do you have? – David Heffernan Sep 17 '11 at 7:08
David, I assume it uses the IE on the box, which is IE8. I get Javascript errors. Perhaps there is an incorrect setting somewhere. – Toby Allen Sep 17 '11 at 7:39
feedback

1 Answer

up vote 7 down vote accepted

I should have googled first. Found this

http://code.google.com/p/delphichromiumembedded/

Took a little bit of fiddling, but seems to work good.

link|improve this answer
I also tested it. It works well! (Don't forget to deploy the DLL with your app) – Whiler Sep 16 '11 at 19:52
CEF (chromium embedded framework) is good stuff. – Warren P Sep 17 '11 at 0:40
1  
Yes, I can confirm that IE8 raise random javascript errors with TWebBrowser. We are also in the process to change to Chromium component. – Roland Bengtsson Sep 19 '11 at 15:57
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.