Ver Mensaje Individual
  #2  
Antiguo 12-09-2005
Avatar de roman
roman roman is offline
Moderador
 
Registrado: may 2003
Ubicación: Ciudad de México
Posts: 20.269
Reputación: 10
roman Es un diamante en brutoroman Es un diamante en brutoroman Es un diamante en bruto
Debes interceptar el mensaje WM_ENDSESSION:

Código Delphi [-]
type
  TForm1 = class(TForm)
  private
    procedure WMEndSession(var Msg: TWMEndSession); message WM_ENDSESSION;
  end;

implementation

procedure TForm1.WMEndSession(var Msg: TWMEndSession);
begin
  memo1.lines.savetofile('C:\logula.txt');
end;

// Saludos
Responder Con Cita