I'm using VB6 and I have a form with a WebBrowser control and a command button
Private Sub Form_Load()
WebBrowser1.navigate "End Sub
Starting from google.com webpage, I begin my search
Once I find the website needed I would like to save the url of this new page
Private Sub Command1_Click()
Dim strSavedSite As String
strSavedSite = WebBrowser1.LocationURL
End Sub
The variable strSavedSite is saved with the original url " "
How can I retreive the url of the new found website? ( Like the Save to Favorites button )
Thanks for the help
Private Sub Form_Load()
WebBrowser1.navigate "End Sub
Starting from google.com webpage, I begin my search
Once I find the website needed I would like to save the url of this new page
Private Sub Command1_Click()
Dim strSavedSite As String
strSavedSite = WebBrowser1.LocationURL
End Sub
The variable strSavedSite is saved with the original url " "
How can I retreive the url of the new found website? ( Like the Save to Favorites button )
Thanks for the help