Results 1 to 2 of 2

Thread: creating MSIE object

  1. #1

    Thread Starter
    Member
    Join Date
    Oct 2000
    Location
    USA
    Posts
    37

    Question

    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.

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

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