Results 1 to 2 of 2

Thread: internet application

  1. #1

    Thread Starter
    Hyperactive Member
    Join Date
    Aug 2000
    Location
    Texas
    Posts
    313

    Question

    is there a way you can go to and display webpages in vb6?

  2. #2
    Guest
    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"

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width