Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

So I whould like to develop a software in c# that will be capable of downloading youtube videos using threads.

Which control should i use in order to show the progress of each of the videos being downloaded in a given time?

share|improve this question
Depends very much on you GUI framework. – Henk Holterman Apr 26 '11 at 11:36

3 Answers

You can always use ProgressBar component in conjunction with BackgroundWorker to update the completion status.

Here is a basic sample: C# Winform ProgressBar and BackgroundWorker

By the way, a guy wrote a step-by-step instructions here which may be helpful: http://fernandof.wordpress.com/2007/04/04/implementing-multi-threading-in-winforms-using-the-backgroundworker-class/

share|improve this answer

Try this article:

C# Download File with Progress Bar

share|improve this answer

ProgressBar is more than enough

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.