0

I want my C# application to open an Internet Explorer window. So far I have figured out how I'm doing:

using SHDocVw

Type oType = Type.GetTypeFromProgID("InternetExplorer.Application");

if (oType != null)
    return (InternetExplorer)Activator.CreateInstance(oType);

Now I want to remove all unnecessary buttons and menus in Internet Explorer and instead, I want to add a custom button in the toolbar. When the user presses the button, all information on the current page is copied to my C# programs. How do I do that?

magol
  • 6,135
  • 17
  • 65
  • 120

1 Answers1

1

Have you thought about hosting a web browser control inside your application? You might want to take a look at the WebBrowser class: MSDN

PJ8
  • 1,278
  • 10
  • 15