Click here to Skip to main content
15,881,281 members
Please Sign up or sign in to vote.
1.00/5 (3 votes)
See more:
How to build download manager using vb.net
Posted

Check this out for a Download Manager

http://www.vbdotnet.in/2012/03/how-to-download-file-using-vbnetfast.html[^]

If you want to download Videos you can check Youtuber source code on
source forge at

http://sourceforge.net/projects/youtubertool/?source=directory[^]
 
Share this answer
 
here is an article for you
MyDownloader: A Multi-thread C# Segmented Download Manager[^]
YoutubeExtractor[^]
Its in C# I think you can convert the code.
 
Share this answer
 
v2
Make your form, 3 textboxes, 1 button

first you import System.Net

then you go to class form1 and type
Public WithEvents download as New WEbClinet

Button1_Click:

download = New WebClient
download.DownloadFileAsyno(New Uri(textBox2.Text),TextBox1.Text + "\" + TextBox3.Text)


textbox1 - url
textbox2 - folderbrowse dialog path (you import and folderbrowse dialog..)
textbox3 - in this textbox you name your file
 
Share this answer
 
Comments
Member 8620581 3-Feb-13 10:50am    
What if we dont know the url sth like IDM ?
[no name] 3-Feb-13 11:51am    
Can you explain on an example,so i can understand?
vishal2592 14-Feb-13 13:50pm    
Yes if there is no direct link i mean if we go to any video site we can directly download video from that site using IDM. I need such a thing.
[no name] 15-Feb-13 17:43pm    
Don't know, try prosting new question, maybe someone will answear..

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