Click here to Skip to main content
15,884,697 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more: , +
how to make a web browser with a file downloader, means that when I want to download any thing don't open the IE downloader, it opens my own downloader.
Posted

1 solution

In the Navigating event of your WebBrowser,

Check for the required extension in the hyperlink (e.Url).

Then use
VB
e.Cancel = True
to cancel the default action. Then call your download manager.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900