Vielleicht so, wie ich hier der Statusbar eine Uhr angedreht habe.
Delphi-Quellcode:
// Die Uhr in das dritte Panel setzen von der Statusbar
MainStatusbar.Perform(SB_GETRECT, 2, Integer(@R));
Clock.Parent := MainStatusbar; //Clock adoptieren
Clock.Top := r.Top; //Größe der
Clock.Left := MainForm.Width - 250; //Clock setzen
Clock.Width := 100; //und an Panel anpassen
Clock.Height := r.Bottom - r.Top;
Nur statt der Uhr ein ein TImage nehmen.