Wie wäre es,wenn du über einen Timer die
RGB-Werte des Backgrounds immer mehr ins graue gehen lässt.
Und die Farbänderung packst du in eine Schleife.
Delphi-Quellcode:
function farbe(
var i:integer):integer;
begin
for i:=1
to 255
do
begin
form1.color:=
RGB(45,67,i);
end;
end;
//end of function
Men are born ignorant, not stupid; they are made stupid by education. - Bertrand Russell
I cannot teach anybody anything, i can only make them think. - Socrates