3

I am coding an add-on using an existing SDK which has no webview-like component but allows for ActiveX controls.

So the only idea I come up with is find an ActiveX control implementing a web browser or at least show a web browser.

Is there such control?

onemach
  • 3,847
  • 5
  • 32
  • 47

3 Answers3

2

Don't use the IE activex control, it's full of memory leaks.

See this post for alternatives:

Replacing .NET WebBrowser control with a better browser, like Chrome?

Community
  • 1
  • 1
Darthg8r
  • 10,869
  • 12
  • 54
  • 86
1

FireBreath has a WebView library that uses the IE activex control to embed a web browser inside a FireBreath plugin (which acts as an ActiveX Control on IE). You should be able to adapt it, assuming you're using C++.

taxilian
  • 13,829
  • 4
  • 32
  • 69
0

Finally find it.

SHDocVw.WebBrowser will do.

Usually the path is C:\Windows\System32\shdocvw.dll

onemach
  • 3,847
  • 5
  • 32
  • 47