Able to use IE browser within a VB6 or VB.Net project? (Not AxBrowse control)

  • Thread starter Thread starter Seeker
  • Start date Start date
S

Seeker

Are there any DLLs, etc. that I can use to embed an IE6 web browser into a
VB6 or VB.Net project (not including the AxBrowse) control?

Project will be deployed on Win XP machines, so I can count on those DLL's,
etc. already being present and registered on the target PCs.

Thanks!
 
* "Seeker said:
Are there any DLLs, etc. that I can use to embed an IE6 web browser into a
VB6 or VB.Net project (not including the AxBrowse) control?

Project will be deployed on Win XP machines, so I can count on those DLL's,
etc. already being present and registered on the target PCs.

Why not use AxWebBrowser?
 
Herfried K. Wagner said:
Why not use AxWebBrowser?

- no history
- doesn't remember passwords/login information
- has some "issues" with .Net
- does not work the same was as IE in some cases (some authenticaion/cookie
issues)

Basically IE does everything I need already, except I need it tabbed and
some of the tabs are custom controls, not web pages.

Thanks!
 
Hi Seeker,

You can use the webbrowser not the axwebbroser = axshdocvw and webbrowser =
shdocvw

Dim myIE As SHDocVw.InternetExplorer

Remember that we have seen that not everything is working like the
axwebbrowser

I hope this helps?

Cor
 
Back
Top