I just programmed my own web browser. care to share experiences of your first real program? P.S. It's called Surf.
Last edited by samtwheels (2011-11-04 18:28:41)
Offline
Good for you.
What did you program it in?
Offline
ProgrammingFreak wrote:
Good for you.
![]()
What did you program it in?
Visual C++. It was mostly just stuff automatically done, but it still felt good.
Offline
maxskywalker wrote:
How do you load web pages?
ok, you double click the button that you want to use for a "go" button. It will open the code editor. you will be in a event handler for the button.
give yourself a new line, the type the following:
this->webBrowser1->Navigate(this->textBox1.Text);
This should make it display a web page. make sure the URL has the http:// part.
Offline