Post by SasanThank you,
How can prevent from gif image flicker ?
What are you drawing the gif on? Is it loaded in a TImage? If so, then the
question is "How do I prevent flicker in TImage". If you do a newsgroup
search for "TImage flicker" you should get plenty of ideas. If it is not in
a TImage then post again but the same principle that avoids flickers in
TImage will usually apply to whatever else you are doing.
Personally, I just set the "DoubleBuffered" property of the parent to true.
This property must be set at runtime since it is not published. The
constructor of the form is a good place to do this.
HTH,
Clayton