The text of this article is not in this database — only its details are. Read it on the old site: Creating an instance of Internet Explorer in VB.NET
3 Comments
Join the conversation! Your thoughts help the community grow.
Sign in to leave a comment.
Harry DablettPosted Apr 9, 2010, 8:40 AM
After creating an instance of IE in this manner is it possible to navigate to a url in a new tab?
lee chinPosted Dec 27, 2009, 4:01 PM
Imports SHDocVw Sub OpenBrowser(ByVal url As String) ' Dim o As Object = Nothing Dim ie As New SHDocVw.InternetExplorerClass Dim wb As IWebBrowserApp = CType(ie, IWebBrowserApp) wb.Visible = True 'Do anything else with the window here that you wish wb.Navigate(url, o, o, o, o) End Sub 'OpenBrowser are these code is juz copy and and pasts in a cmdbutton? then can browse internet?