Copy files backgroundworker with progressbar

  • Thread starter Thread starter Silvester
  • Start date Start date
S

Silvester

Please can someone point me to a code sample where larges files can be
dragdropped onto a form and files are copied using backgroundworker and
progressbar status ?

Thanks in advance
 
It is rather tedious than hard. You just have to tackle drag and drop,
backgroundworker and progressbar separately.

chanmm
 
Hi,

Do you have a code sample or can you point me to a link that shows us how to
do this ?

Thanks
 
Check out the DragDrop event in the help and the topic on the
background worker.

Once you kick off the worker you won't be able to process more files
until the worker is done. So you may want to use a normal thread that
watches a queue.. check out Semaphore and friends.

Andy
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top