So, I've been working in a web-browser, However, There is an issue I am facing, I am using AxWebBrowser (Microsoft Web Browser) however, I wanted to make a history function, It is going well, And I am new to Visual Basic, Or anything related to Coding Languages, But however, I want a button that navigates the browser to one of the sites, As a result, I am using Listbox, To list the history, The history loads well, However, Going back to the site already visited, Isn't going well..
So, I am using the following code..
When I press the button, It navigates me no where.
So I tried using
tab.AxWebBrowser1.Navigate("http://www.facebook.com")
And for a mysterious reason, It also didn't work, I suspected that this problem because I am in a tabbed browser, And it doesn't know which tab should it navigate in, So, Is there is a way I can focus the effect of the Navigation code on the Current tab?
Or, If possible, Is there is a solution for the navigation problem if it is not a tab problem?
Thanks in advance, And I apologize if I posted in the wrong section, I am a complete newbie to coding and such..
So, I am using the following code..
Code:
Private Sub Button4_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button4.Click
tab.AxWebBrowser1.Navigate(Me.listbox1.SelectedItem)
When I press the button, It navigates me no where.
So I tried using
tab.AxWebBrowser1.Navigate("http://www.facebook.com")
And for a mysterious reason, It also didn't work, I suspected that this problem because I am in a tabbed browser, And it doesn't know which tab should it navigate in, So, Is there is a way I can focus the effect of the Navigation code on the Current tab?
Or, If possible, Is there is a solution for the navigation problem if it is not a tab problem?
Thanks in advance, And I apologize if I posted in the wrong section, I am a complete newbie to coding and such..