Webbrowser Help
Posted: Sun Feb 17, 2013 5:46 am
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 ?....