Hi, I would like to download images in the background from an URL. I currently had a program which is downloading an image from a URL. However the application i created will "freeze" until all the image had be downloaded.
Hence, I am looking for a way to download images from an URL in the background. So i would be able to continue to use the program while it download.
I am new to C# (WPF) and I am still learning. Hope you guys can give me some suggestion or links for references. Thank you
Thank you very much!
Janet
|
Go4Expert Member
|
|
| 26Oct2010,01:15 | #2 |
|
to do that, just create a nother thread to fire the method that is downloading the Images.
Code:
Thread firstThread = new Thread( new ThreadStart( MethodA) ); Code:
public void MethodA()
{
// Do Nothing
}
THT
like this
|
|
Newbie Member
|
|
| 27Oct2010,14:04 | #3 |
|
Hi dotNet Zombie,
Thank you for the prompt reply. I am trying out the code Will let u know if it is working. Regards THT |
|
Newbie Member
|
|
| 27Oct2010,15:26 | #4 |
|
Hi, it is able to work
thank you very much!!
|

Will let u know if it is working.