Linked Questions
12 questions linked to/from How to use Animated Gif in a delphi form
3 votes
2 answers
9k views
Animated gif in Delphi XE 3 forms [duplicate]
Possible Duplicate: How to use Animated Gif in a delphi form I recently updated my version of Delphi 7 to Delphi XE3. Using Delphi 7, I used a component to put a GIF on a TImage, delphi XE3 ...
8 votes
1 answer
5k views
Delphi XE3 File Not Found GIFImage.dcu
My first question here - this is new install of Delphi XE3. I thought animated GIF support was now built in to Delphi (since 2007?). When I drop a TImage on my form, all is good until I populate the ...
0 votes
2 answers
4k views
how to display an animated gif in Delphi 2010
I have tried each of the following in Delphi 2010 to display an animated gif on my form. All result in an access violation. (Two of the three variations were commented out on each attempt.) Thanks ...
2 votes
2 answers
2k views
Show a Form with a message and an animated image while the application is busy
I'm trying to show an information message and an animated gif (an Hourglass) while my application is busy (loading a query). I have defined a Form to show that Message (using the code shown in this ...
-2 votes
3 answers
8k views
Splash screen with progress bar [closed]
My database takes quite some time to load (it is on network) so I thought to display a splash screen with some animation (progress bar or some simple animation) to keep the user occupied.Since it is ...
-3 votes
2 answers
5k views
Animated gif in Delphi XE 7 VCL
i tried the solution suggested here in delphi 2010 and XE7 How to use Animated Gif in a delphi form both of them raise exception with the following message "Exception class EInvalidCast with ...
2 votes
2 answers
2k views
Loading Gif Picture From Resources
I want to load animated .Gif Picture into TImage From .Res File but TImage prepare LoadFromResourceName() function only for MyImage.Picture .Bitmap. I Write a Simple Code as Follow procedure TForm2....
3 votes
1 answer
2k views
How to open ClientDataSet (master/detail) in separate thread(different of main thread)
Using: Delphi XE2, DBExpress, Firebird I can't access any VCL control outside the main thread safely, that includes forms, panels, edits, etc and the Timage and Timage descendants. I'm need to open ...
2 votes
1 answer
1k views
Cannot play animated GIF in Delphi XE3?
I download a animated GIF file from . The following the instructions in How to use Animated Gif in a delphi form to play it. But what I see is always a white block without any animation. Why? Let me ...
0 votes
1 answer
832 views
Animation of a Gif image is not working when execute a process
I have a Delphi project that consists of two forms namely MainForm and DialogForm. When I click on Button1, the DialogForm should appear and stay on top until a process complete (the process takes a ...
0 votes
2 answers
834 views
how do i animate TJvGIFImage?
i have been using TGIFImage for while but i stuck with Some bugs with it so i decided to move To TJvGIFImage and here how i load image AGIF := TJvGIFImage.Create; AGIF.LoadFromFile('what ever image'...
-2 votes
2 answers
314 views
How to show animations on the mainform?
I want to show a animation resource on the mainform. i.e., when the user is waiting for data handling, animation is started, so the user is of entertainment. How to do this easily? BTW: I'm using ...