I'm working on a small application and i have a web browser that loads a certain url when it is opened. The problem if you click a link inside that visual basic browser it opens the URL in internet explorer.
Is there a way to set it so all links that are opened in the VB browser open in default and not IE?
EDIT: I have added my code below to you can get a better idea
Public Class UpdaterBrowser
Private Sub UpdaterBrowser_Load(sender As Object, e As EventArgs) Handles MyBase.Load
WebBrowser.ScrollBarsEnabled = False
WebBrowser.IsWebBrowserContextMenuEnabled = False
WebBrowser.Navigate("http://www.google.co.uk/")
End Sub
End Class
EDIT Again:
Google is not the website being used, i have changed it. But the website is set to open links in new tabs/windows on all links.