How do you add an internet explorer object to a program, and allow it to be viewed through the programs interface. Sorry, this is prob. an easy question, but im just a newbie.
Printable View
How do you add an internet explorer object to a program, and allow it to be viewed through the programs interface. Sorry, this is prob. an easy question, but im just a newbie.
Click Project > Custom Controls (ctrl+t) > and make sure Microsoft Internet Controls is checked. Than you just add the control to your form. And here are the basic commands you'll need:
Code:'Go to the previous webpage
WebBrowser1.GoBack
'Go to the present/future webpage
WebBrowser1.GoForward
'Go to the default IE home
WebBrowser1.GoHome
'Go to the default search page
WebBrowser1.GoSearch
'Refresh the current webpage
WebBrowser1.Refresh
'Navigate to a webpage
WebBrowser1.Navigate "www.vb-world.net"