I am reading a pretty good book right now. It was free from MSPress this month: Build a Program Now!:Microsoft Visual Basic 2008.
I've already run into something I want to know about! In one exercise, they have you build a web browser. It's a really simple tool that basically uses the built in WebControl. You then add a text box and a Go button, which you then tie to the text box.
Now, of course, I want to know why tapping ENTER after typing a URL doesn't bring up the web page. :-(
---
Public Class Form1
Private Sub btnGo_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnGo.Click
MyBrowser.Navigate(txtURL.Text)
End Sub
Private Sub txtURL_TextChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles txtURL.TextChanged
End Sub
End Class
---
I had tried to place another "MyBrowser.Navigate(txtURL.Text)" in the txtURL_TextChanged private sub and that DID work... but only in that the browser would attempt to browser after every character. Once, I typed in, say, "CNN.com," CNN would come up whether I tapped Enter or not.
This is not all that discouraging. I am just now getting into it! :)