Click here to Skip to main content
15,885,914 members
Please Sign up or sign in to vote.
3.00/5 (1 vote)
See more:
I'm using the following code for download:
VB
Dim wc As System.Net.WebClient
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
wc = New System.Net.WebClient()
wc.DownloadFileAsync(New Uri("URL"), "C:\")

I have good internet connection and the Direct link transfer rate 500.385 kb/sec on Internet Download Manager.
So how can I make download faster in VB?
It's really slow in VB

Any code?

thanks :)
Posted
Updated 26-Jan-13 2:30am
v3

1 solution

I found this excellent CP article: A Multi-thread C# Segmented Download Manager
But the article was written in C#, you need to convert the entire project to VB.NET, OR just compile as library and add reference in your VB.NET project.

Hope this helps.
 
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