CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 3 of 3
  1. #1
    Join Date
    May 1999
    Posts
    9

    microsoft web browser control

    hi ,

    does anyone know how to use microsoft web browser control ? any suggested links are there for using it ?

    ramesh.


  2. #2
    Join Date
    Apr 1999
    Posts
    383

    Re: microsoft web browser control

    There are a number of ways of using it, depending on your project type and requirements.

    For an ordinary MFC Doc/View application:
    from the menu, select 'Project' / 'Add To Project' / 'Components and Controls', find the Microsoft WebBrowser control, and Insert it. The Class Wizard will create a wrapper class for you in a new header and source file. Use this class in your view just like any other control (construct an instance, call Create() on it, then use its methods - Navigate() is the main one).

    In an ATL project it's similar, but you select 'Insert' / 'New ATL Object'.

    Dave


  3. #3
    Join Date
    May 1999
    Posts
    5

    Re: microsoft web browser control

    There is a good article for this in msdn the article title is

    Boning Up on the Internet Client SDK Part I: Web Browsing Objects

    Hope you find this useful.

    Regs,
    Ramanan


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

Featured