Yahoo Answers is shutting down on May 4th, 2021 (Eastern Time) and beginning April 20th, 2021 (Eastern Time) the Yahoo Answers website will be in read-only mode. There will be no changes to other Yahoo properties or services, or your Yahoo account. You can find more information about the Yahoo Answers shutdown and how to download your data on this help page.

Can you change this VB prog to work on Micrsoft Edge?

Private Sub IE_Autiomation()

Dim IE As Object

Set IE = CreateObject("InternetExplorer.Application")

IE.Visible = True

IE.Navigate "http://www.youtube.com/%22

Do While IE.Busy

Application.Wait DateAdd("s", 1, Now)

Loop

End sub

1 Answer

Relevance
  • 4 years ago
    Favorite Answer

    No, you can not do that. Microsoft Edge is a web browser. If you want to run software on a web browser, you need to write a web-based program, including the supporting HTML, and CSS, besides the code. You can't simply "change" the code.

Still have questions? Get your answers by asking now.