If you are going to post this tutorial anywhere else remember to give credits.
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:
Double click on Button2 (Forward) and add this:
Double click on Button3 (Refresh) and add this:
Double click on Button4 (Stop) and add this:
Double click on Button5 (Go) and add this:
Once you have done all that its now time to test the program.
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
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:
webbrowser1.goback;
Code:
webbrowser1.GoForward;
Code:
webbrowser1.Refresh;
Code:
webbrowser1.stop;
Code:
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