Webbrowser Help
If you need help with a project or need to know how to do something specific in VB.NET then please ask your questions in here.
Forum rules
Please LOCK your topics once you have found the solution to your question so we know you no longer require help with your query.
Please LOCK your topics once you have found the solution to your question so we know you no longer require help with your query.
3 posts
Page 1 of 1
Hi im trying to make an update to my webbrowser for an OS im buildling (Again) =)
anyway im trying to make it handle whne people click links est... it opens them in our webbrowser instead of the Default browsers how would i make it do this i did try this code but it does not work
maybe is their a way to change the Default browser to our and then when our OS
shuts down change it back to internet explorer or what it was before our os started ?....
anyway im trying to make it handle whne people click links est... it opens them in our webbrowser instead of the Default browsers how would i make it do this i did try this code but it does not work
Code: Select all
it just makes the current browser navigate i put it in a newwindow event ect.... Try
CType(BackTrackTabControl1.SelectedTab.Controls.Item(0), Windows.Forms.WebBrowser).Navigate(URL_Link.Text)
Catch ex As Exception
MsgBox(ex.ToString)
End Try
maybe is their a way to change the Default browser to our and then when our OS
shuts down change it back to internet explorer or what it was before our os started ?....
The default web browser settings are stored in the registry. It is possible to change these, and have your program load the URL when it is started.
There is a useful article that describes the settings here
Ideally the user should be aware if the browser setting will change when using the software.
There is a useful article that describes the settings here
Ideally the user should be aware if the browser setting will change when using the software.
3 posts
Page 1 of 1
Copyright Information
Copyright © Codenstuff.com 2020 - 2023