I have a component that makes Delphi 2006 capable of display GIF and animated GIF. I analyzed the code and found that it uses threads to display it. But what happens when I put a "loading" animation and make some processing (like remote database) that animation freezes along with the entire form, as usual.
I know I can't process the database in a new thread different from vcl's thread, I make the entire db handle out of it would be very risk. I should not make an unstable db handle because an animation.
So, anyone knows a method to make this gif animation happens once for all?
Solution:
The TJvGIFAnimator component from JEDI VCL Package with the AsyncDrawing property set to True is the ultimate image component to animate GIF without interruption from the main thread. You can download it to all compatible Delphi versions from http://sourceforge.net/projects/jvcl/ I hope I can help some people with that information.