Currently I am working on a webbrowser and so far I have a lot of progress and features nailed down.. But I am lacking one thing. I want the ability to instant search using my navigation textbox. So as you are typing a website it will suggest the closest matching one. Like Google Instant searching. Can anyone hint me if not code that? I really want to add this functionality.
Code:
Private Sub TxtNavigate_TextChanged(sender As System.Object, e As System.EventArgs) Handles TxtNavigate.TextChanged
'Coding here I guess?
End Sub
End Class