WebBrowser control

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Ray

    WebBrowser control

    Anybody knows what's the equivalent of the WebBrowser
    control in .NET?

    Thanks.
  • William Ryan  eMVP

    #2
    Re: WebBrowser control

    There's not one.. .you have to use the com one. Go into your toolbox and
    add an item. Under the COM tab, Microsoft Web Browser ... *.\shdocvw.dll
    "Ray" <anonymous@disc ussions.microso ft.com> wrote in message
    news:1f7e01c427 43$f12fcbb0$a00 1280a@phx.gbl.. .[color=blue]
    > Anybody knows what's the equivalent of the WebBrowser
    > control in .NET?
    >
    > Thanks.[/color]


    Comment

    • William Ryan  eMVP

      #3
      Re: WebBrowser control

      There's not one.. .you have to use the com one. Go into your toolbox and
      add an item. Under the COM tab, Microsoft Web Browser ... *.\shdocvw.dll
      "Ray" <anonymous@disc ussions.microso ft.com> wrote in message
      news:1f7e01c427 43$f12fcbb0$a00 1280a@phx.gbl.. .[color=blue]
      > Anybody knows what's the equivalent of the WebBrowser
      > control in .NET?
      >
      > Thanks.[/color]


      Comment

      • Sparky

        #4
        Re: WebBrowser control

        Apparently a proper managed version is coming with the next version of
        Visual Studio (late 2004?)

        "Ray" <anonymous@disc ussions.microso ft.com> wrote in message
        news:1f7e01c427 43$f12fcbb0$a00 1280a@phx.gbl.. .[color=blue]
        > Anybody knows what's the equivalent of the WebBrowser
        > control in .NET?
        >
        > Thanks.[/color]


        Comment

        • Sparky

          #5
          Re: WebBrowser control

          Apparently a proper managed version is coming with the next version of
          Visual Studio (late 2004?)

          "Ray" <anonymous@disc ussions.microso ft.com> wrote in message
          news:1f7e01c427 43$f12fcbb0$a00 1280a@phx.gbl.. .[color=blue]
          > Anybody knows what's the equivalent of the WebBrowser
          > control in .NET?
          >
          > Thanks.[/color]


          Comment

          • Cor Ligthert

            #6
            Re: WebBrowser control

            Hi Ray,

            When you are using the webbrowser be aware that you use the AXshdocvw.dll

            Here is a sample which also installs that on your computer.
            (As the name says it is AX not real a webbrowser for dotnet)

            webbrowser
            Microsoft Support is here to help you with Microsoft products. Find how-to articles, videos, and training for Microsoft Copilot, Microsoft 365, Windows 11, Surface, and more.


            mshtml


            And direct a link to Mshtml, mostly you need that when you are using the
            axwebbrowser.

            The best way to handle is to set it in your toolbox by adding it to that and
            than drag it to the form.
            (I do not often use the designer however for this forever).

            I hope this helps?

            Cor



            Comment

            • Cor Ligthert

              #7
              Re: WebBrowser control

              Hi Ray,

              When you are using the webbrowser be aware that you use the AXshdocvw.dll

              Here is a sample which also installs that on your computer.
              (As the name says it is AX not real a webbrowser for dotnet)

              webbrowser
              Microsoft Support is here to help you with Microsoft products. Find how-to articles, videos, and training for Microsoft Copilot, Microsoft 365, Windows 11, Surface, and more.


              mshtml


              And direct a link to Mshtml, mostly you need that when you are using the
              axwebbrowser.

              The best way to handle is to set it in your toolbox by adding it to that and
              than drag it to the form.
              (I do not often use the designer however for this forever).

              I hope this helps?

              Cor



              Comment

              Working...