Private Sub Open_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Open.Click
If (BookmarksList.SelectedIndex >= 0) Then
WebBrowser.WebBrowser1.Navigate(BookmarksList.SelectedItems)
End If
End Sub
This is the code I made for opening a Bookmark from List yet an error keeps on showing. Any help?
WebBrowser is the main form's name.
BookmarksList is the List Box that contains the Bookmarks.
PS: I've just started to learn VB.NET