//以下是在XP中的,别的系统 不知道,具体的类和标题你可以用SPY++看
var
h:thandle;
r:trect;
begin
h:=findwindow('CiceroUIWndFrame','TF_FloatingLangBar_WndTitle');
if h>0 then
begin
getwindowrect(h,r);
memo1.Lines.Add('Left: '+inttostr(r.Left )) ;
memo1.Lines.Add('Top: '+inttostr(r.Top )) ;
memo1.Lines.Add('Width: '+inttostr(r.Right-r.Left )) ;
memo1.Lines.Add('Height: '+inttostr(r.Bottom-r.Top )) ;
end;