I want to prevent images in a page from being loaded in the WebBrowser control. I want it to happen before the DocumentCompleted event occurs. Is there a way to do this?
WebBrowser
DocumentCompleted
Try this code:
RegistryKey RegKey = Registry.CurrentUser.OpenSubKey(@"SoftwareMicrosoftInternet ExplorerMain", true); RegKey.SetValue("Display Inline Images", "no");
It changes registry key.
1.4m articles
1.4m replys
5 comments
57.0k users