In this tutorial ill show you how to create a simple delphi webbrowser.
What you will need:
1 Editbox
5 Buttons
1 Webbrowser
First you will need to add 1 editbox which can be found here:

Next you will need to add 5 Buttons:

Now rename each button to these:
Button1 = Back
Button2 = Forward
Button3 = Refresh
Button4 = Stop
Button5 = Go
We will now add the webbrowser which is found here:

The program will look similar to this:

now its time to start coding.
Double click on Button1 (Back) and add in this:
Code: Select all
webbrowser1.goback;
Code: Select all
webbrowser1.GoForward;
Code: Select all
webbrowser1.Refresh;
Code: Select all
webbrowser1.stop;
Code: Select all
webbrowser1.navigate(edit1.text);
To test your program you can click the green triangle here:

Or just press F9
Now the finished result will look similar to this:

Hope you enjoyed my tutorial
