I wanted to create a transition effect for a form, so in the event OnShow
, set the AlphaBlend := 0
property and, in OnActivate:
for i := 55 to 255 do
begin
AlphaBlendValue := i;
Update;
sleep(1);
end;
It works perfectly on my device, making the form visible gradually, around two tenths of a second, which gives a more pleasant effect. However, by copying the executable to two other devices (by the way, identical to my - same make and model), the effect takes about two seconds (!), Giving a very bad impression!
Does anyone have any idea what might be happening?