|
-
Apr 2nd, 2022, 10:58 AM
#1
Thread Starter
New Member
What happens to our apps that use the WebBrowser ActiveX after MS removes IE11?
Basically title. I have a lot of legacy apps that use embedded web browsers using the ActiveX control. I even have some custom UI controls that use the web browser control to render fancy buttons, lists and such.
Will these continue to work after June 15th 2022? What is the alternative if the user doesn't have IE installed?
Does anyone know if the "Microsoft Internet Transfer Control" is also affected by the removal of IE?
-
Apr 2nd, 2022, 12:34 PM
#2
Addicted Member
Re: What happens to our apps that use the WebBrowser ActiveX after MS removes IE11?
Internet Explorer 11 desktop app retirement FAQ
Ref: https://techcommunity.microsoft.com/...q/ba-p/2366549
Joe
-
Apr 2nd, 2022, 02:55 PM
#3
Thread Starter
New Member
Re: What happens to our apps that use the WebBrowser ActiveX after MS removes IE11?
So according to this, nothing happens and everything continues to work? Assuming I'm interpreting this correctly.
-
Apr 3rd, 2022, 11:15 AM
#4
Addicted Member
Re: What happens to our apps that use the WebBrowser ActiveX after MS removes IE11?
Using "How To Run Internet Explorer in Windows 11" as a reference;
Code:
Private Sub Form_Load()
Dim ie11
Set ie11 = CreateObject("InternetExplorer.Application")
ie11.Navigate "https://www.dostips.com/forum/viewtopic.php?f=3&t=10413"
ie11.Visible = True
Unload Me
End Sub
Joe
-
Apr 3rd, 2022, 12:55 PM
#5
Fanatic Member
Re: What happens to our apps that use the WebBrowser ActiveX after MS removes IE11?
Worst case, if the legacy apps won't work in Windows 10+, you do need to bear in mind that VB6 is decades old now and is long past its retirement age (and, to be fair, HAS been retired a while back)...hasn't stopped people from using it, and there will be workarounds like installing older versions of the browser in order to force the required DLLs and such to be available to the system.
We're going nowhere, and nor is the IE support within VB6...as you said, everything continues to work, most likely.
The easy answer is to move up to a newer language like Visual Studio, but not everyone is capable of making that move...took me decades to get the hang of VB6 :-)
-
Apr 3rd, 2022, 01:31 PM
#6
Re: What happens to our apps that use the WebBrowser ActiveX after MS removes IE11?
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|