(adsbygoogle = window.adsbygoogle || []).push({});
--How to make a Basic Webbrowser--
Star off by adding
-4 Buttons
-1 Text Box
-1 Webbrowsers
When you put in the webbrowser look at its properties and change the "Dock" to "None"
You must login or register to view this content.
Name the buttons "Go" ">" "<" "Refresh" and move then accordingly
You must login or register to view this content.
Double click the "Go" button and put the following code in
webbrowser1.navigate(textbox1.text)
Next double clicks the "<" button and put in the following code
webbrowser1.goback()
After that double click the ">" button and put in
webbrowser1.goforward()
And finally for the last last button "Refresh" put in the following code
webbrowser1.refresh()
You must login or register to view this content.