Question HELP! I don't know to make a download dialog for web browser in tabcontrol

stianxxs

Member
Joined
Jun 25, 2010
Messages
7
Location
Norway
Programming Experience
3-5
Hi, I was woundring how to make a custom 'download' dialog for my web browser in vb 2010. Because when i click 'download file' in my tabcontrol it's always loads up the IE download file dialog. I have seen the IE Clone can do it, but i didn't uderstad how to do it.

Thanks

Sorry for my bad English!
 
A dialogue is just a form, so you create it like any other form. To actually download the file, you would probably create a WebClient and call DownloadFileAsync, allowing you to display progress and cancel.
 
Ok :D

Hi, i know that it's onlya dialog box (form), but the question is how i can get the dialog box to show when a user clicks a link to a download, like http://mydomain.com/file.exe and not if he/she is going to a link like: Google only files that is going to be downloaded.

Thanks for your reply
 
Back
Top