MFC How Webcontrol Is replaced?

이수지 [esgurdl] 1 Reputation point
2021-08-19T01:13:01+00:00

Hello. I am using visual studio6.0 MFC.
I am using webcontrol2, and I wonder if there is a control that can be replaced in 6.0 if internet explorer is discontinued.

C++
C++
A high-level, general-purpose programming language, created as an extension of the C programming language, that has object-oriented, generic, and functional features in addition to facilities for low-level memory manipulation.
3,524 questions
0 comments No comments
{count} votes

2 answers

Sort by: Most helpful
  1. Jeanine Zhang-MSFT 9,101 Reputation points Microsoft Vendor
    2021-08-19T05:33:18.627+00:00

    Hi,

    As far as I'm concerned, the only one Web Control in MFC is WebBrowser Control.

    According to the Doc:

    The WebBrowser ActiveX control (and therefore CHtmlView) is available only to applications running under Windows versions in which Internet Explorer 4.0 or later has been installed.

    I wonder if you want to use the control without internet explorer? If so, in my opinion, there is not a control that can be replaced in 6.0 if internet explorer is discontinued.

    Best Regards,

    Jeanine


    If the response is helpful, please click "Accept Answer" and upvote it.

    Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.


  2. Castorix31 81,481 Reputation points
    2021-08-19T06:59:12.153+00:00

    > I am using visual studio6.0 MFC.

    Why VS 6 ?
    VS Community 2019 is free

    The replacement of WebBrowser control is WebView2, with VS >= 2015 as noted
    (WebView2 Edge Browser in MFC C++ Application )