Hallo,
bei meiner Anwendung tritt bei mir auf dem Rechner ein Design-Problem mit Vista auf (s. Anhang).
Folgende Funktionen nutze ich, wenn die Anwendung unter Vista rennt:
Delphi-Quellcode:
procedure DoubleBufferControls(Parent:TWinControl);
var
i : integer;
begin
Parent.DoubleBuffered := true;
for i := 0 to Parent.ControlCount-1 do
if Parent.Controls[i] is TWinControl then
DoubleBufferControls(Parent.Controls[i] as TWinControl);
end;
Gibts da noch nen anderen Weg, das Problem in den Griff zu bekommen?
Viele Grüße ...