I am thinking about using the TWebBrowser component that comes within Delphi's default pallet of components in a project, but I wonder if it uses the IE version installed on the client machine?

If yes:
then I guess it would share its history, cookies, workoffline and stuff like that?
Can I separate them somehow?
Is there any webbrowser component that is free and is not shared with Internet Explorer on the client?

link|improve this question

You asked if there's an alternative, not shared; yes. There is. Chromium for Delphi. uses webkit. basically the same as google chrome. – Warren P Feb 13 '11 at 3:47
feedback

3 Answers

up vote 7 down vote accepted

Yes, TWebBrowser uses whatever IE version is installed on the machine. Take a look at this similar thread for some possible alternatives..

http://stackoverflow.com/questions/162718/how-to-embed-a-browser-object-other-than-ien-in-a-delphi-application

link|improve this answer
1  
Do note that with IE8 installed, TWebBrowser (or more precisly, the underlying ActiveX IE component) defaults to IE7 mode. – Paul-Jan Aug 9 '10 at 6:01
feedback

TWebBrowser is a wrapper around IE ActiveX interface. So, in the end,

 TWebBrowser = Internet Explorer
link|improve this answer
feedback

Yes, TWebBrowser is tied to Internet Explorer. If you want a standalone HTML viewer, then look at the PBear components.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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