Page 1 of 1

TImage & Flicker

PostPosted: August 7th, 2007, 2:07 pm
by hadipardis
Hi, I paint something in OnMouseMove of a TImage in my form. But when I move the mouse many images and labels do flicker. Now what is the problem? I tried this code but it didn't work:
Code: Select all
form1.controlstyle:=form1.controlstyle+[csOpaque];

PostPosted: August 7th, 2007, 3:13 pm
by Kambiz
Set DoubleBuffered property of parent control of Images/Labels flickering to True.

PostPosted: August 8th, 2007, 4:45 am
by hadipardis
Thanks :)