Hi all
I tried to display an gif image while my file is downloading from server..But as downloading started, animation in gif is stopped...I tried to use thread also but then too its not working..
Please help me to solve this.
Loading

try abcPosted Jul 3, 2008, 1:35 AM
Thanks for help... It works..
Sunny ChenPosted Jul 2, 2008, 9:22 PM
It is not correct to update your gif in the thread, but put your downloading logic into the thread.
Another thing, if you want to update your UI controls within a thread, you cannot call directly since win form controls can only be updated in the creating thread. Delegate your operations when you want to update UI controls within a thread other than creating thread.
Guest UserPosted Jul 2, 2008, 11:11 AM