FORM TITLE RUNNING

var
Form1: TForm1;
a:string;

implementation

{$R *.dfm}

procedure TForm1.FormCreate(Sender: TObject);
begin
a:='My Application ';
end;

procedure TForm1.Timer1Timer(Sender: TObject);
var i:integer;
begin
application.title:=a;
form1.Caption:=a;
for i:=1 to (length(a)-1) do
a[i] := application.title[i+1];
a[length(a)] := application.title[1];
end;