How to embed a browser object, other than IE, in a Delphi application

后端 未结 5 505
小蘑菇
小蘑菇 2020-12-04 10:29

Using the default TWebBrowser makes things easy to embed a web browser. Unfortunately the one that comes in by default is IE.

I\'m wondering how does one in

5条回答
  •  爱一瞬间的悲伤
    2020-12-04 11:02

    A viable alternative is CEF - Chromium Embedded Framework which encapsulates the Chromium browser which by itself encapsulates WebKit. This library is provided as plain DLLs with an exported C API.

    There's a delphi interface available at code.google.com/p/delphichromiumembedded

    I've been using it with my own interface implementation and works great, though not so easy to properly use as THTML or IE, but great for whoever needs a powerful and embeddable browser.

提交回复
热议问题