Reputation: 6273
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?
Upvotes: 0
Views: 405