Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

It is just a small function. I wish to download a file from the Internet. I use the libcurl to download the file. The gui uses Qt.

I have three classes. First the MainWindow class, second the DownloadThread class based on the QThread, third the ShowProgress class based on QThread. In MainWindow I init the DownloadThread and the ShowProgress class. I want the first to download the file while the second one shows the download progress.

However the two threads can not run at the same time. the Download thread always runs first, and the ShowProgressThread starts after the Download thread finishes.

I have not determined the reason. Thanks for your help here.

share|improve this question
1  
Show some code. – jdi Aug 9 '12 at 1:49

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.