Ver Mensaje Individual
  #3  
Antiguo 01-10-2003
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.933
Reputación: 27
delphi.com.ar Va por buen camino
Te recomiendo seguir la idea de román, y como extra te doy una ayudita de como buscar el handle del botón de inicio:
Código:
var
  hTray,
  hButton: HWND;
begin
  hTray := FindWindow('Shell_TrayWnd', Nil);
  if hTray <> 0 Then
  begin
    hButton := FindWindowEx(hTray, 0, 'Button', nil);

    Caption := IntToStr(hButton);
  end;
end;
Saludos!
__________________
delphi.com.ar

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