
June 19th, 2012, 11:50 PM
|
|
Contributing User
|
|
Join Date: May 2012
Posts: 140
Time spent in forums: 1 Day 4 h 53 m 15 sec
Reputation Power: 2
|
|
Quote: | Originally Posted by sgpvatt I am trying to move several images quite fast in a form
by changing the position of the image by altering the
Image.left: value. When I run the program I see that
there is flickering on top of the background. I want instead smooth movements of the images. All images have the imageproperty transparent. |
Try to use SetBounds instead. Using SetBounds allows you to alter the Left and Top property in one go, so no drawing happened in between.
If that does not help, try to set the DoubleBuffered property of parent of the images to True.
|