Click here to Skip to main content
15,895,370 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
hi
i want to download a file.. i am able to download a file but i don't know how to use progress bar for downloading purpose and to display the percentage of a file...plz help me
Posted
Comments
Sergey Alexandrovich Kryukov 30-Apr-13 13:52pm    
The question about progress bar makes no sense at all until you tag your application type or the UI library you are using or want to use.
—SA

1 solution

Have a look here: how to download a file from internet[^]. It's a Sergey's answer for similar question. It's very good example! Change code to your needs.

Another similar answers:
Progress bar for downloading file[^]
Downloading progress bar[^]
 
Share this answer
 
v2
Comments
shashank 1068 30-Apr-13 14:01pm    
thnx :)
Maciej Los 30-Apr-13 14:02pm    
You're welcome ;)
shashank 1068 30-Apr-13 14:17pm    
sry to dstrb u again...but can u plz help me once again??
i want to add the following code in FOR loop..
'label
Dim label As New Label()
label.Location = New Point(13, 13)
label.Text = Name
Me.Controls.Add(label)
'Textbox
Dim textbox As New TextBox()
textbox.Location = New Point(60, 60)
textbox.Text = "URL"
Me.Controls.Add(textbox)

can u plz help me by puting the above code into for loop?
Maciej Los 30-Apr-13 14:21pm    
Do you want to add label and textbox in each step of loop?
shashank 1068 30-Apr-13 14:21pm    
yes

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