>source code for a button with a blinking caption?
You can use a TBitBtn and a timer:
procedure TForm1.Timer1Timer(Sender: TObject);
begin
if BitBtn1.Font.Color=clBlack then
BitBtn1.Font.Color:=clWhite
else
BitBtn1.Font.Color:=clBlack;
end;
You coud also take a look at Jedi buttons. If you google "animated
button Delphi" you'll find a number on the web.
hth
Malcolm
_______________________________________________
Delphi mailing list -> [email protected]
http://www.elists.org/mailman/listinfo/delphi