Ver Mensaje Individual
  #2  
Antiguo 17-03-2004
Avatar de delphi.com.ar
delphi.com.ar delphi.com.ar is offline
Federico Firenze
 
Registrado: may 2003
Ubicación: Buenos Aires, Argentina *
Posts: 5.932
Reputación: 27
delphi.com.ar Va por buen camino
Mmmmm... no creo que te sirva, pero esto oculta todo el panel:
Código:
var
  hTrayWnd,
  hTryNotify: HWND;
begin
 hTrayWnd := FindWindow('Shell_TrayWnd',nil);
 if hTrayWnd <> 0 then
 begin
   hTryNotify := FindWindowEx(hTrayWnd, 0, 'TrayNotifyWnd', nil);
   if hTryNotify <> 0 Then
     ShowWindow(hTryNotify, SW_HIDE);
 end;
end;
__________________
delphi.com.ar

Dedique el tiempo suficiente para formular su pregunta si pretende que alguien dedique su tiempo en contestarla.
Responder Con Cita