Uses
ShellApi;

Var
stray:NOTIFYICONDATA;

procedure TForm1.FormCreate(Sender: TObject);
begin
SetWindowLong(Application.Handle, GWL_EXSTYLE, WS_EX_TOOLWINDOW);
with stray do
begin
cbsize:=sizeof(stray);
wnd:=form1.handle;
hicon:=Application.icon.Handle;
uID:=0;
sztip:='Bekci Calışıyor';
uflags:=7;
uCallBackMessage:=$200;//icon uzerine tıklama kontrolu icin
end;
Shell_NotifyIcon(0,@stray);
end;
__________________