is there a way you can go to and display webpages in vb6?
Printable View
is there a way you can go to and display webpages in vb6?
Click Project > Custom Controls > Microsoft Internet Controls.
Make sure Microsoft Internet Controls is checked.
Add the Webbrowser Control to your form.
And here are the basics of what you need to use the Webbrowser Control:
Code:'Go to the previous webpage
WebBrowser1.GoBack
'Go to the present 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.YourSite.com"