View Single Post
Go4Expert Member
26Oct2010,01:15  
dotNet Zombie's Avatar
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