Ver Mensaje Individual
  #2  
Antiguo 30-12-2008
Avatar de Neftali [Germán.Estévez]
Neftali [Germán.Estévez] Neftali [Germán.Estévez] is offline
[becario]
 
Registrado: jul 2004
Ubicación: Barcelona - Espańa
Posts: 18.309
Reputación: 10
Neftali [Germán.Estévez] Es un diamante en brutoNeftali [Germán.Estévez] Es un diamante en brutoNeftali [Germán.Estévez] Es un diamante en bruto
¿Has revisado el visor de eventos del sistema?
¿talvez tenga algun problema? ¿Conexión?

También puedes crear un Log en disco, con las operacionmes que va realizando, a ver en qué momento hay algun problema....

Código Delphi [-]
procedure _Log(Str:string);
const
  FileName = 'c:\logService.txt';
var
  F: TextFile;
begin
  AssignFile(f,FileName);
  if FileExists(FileName) then begin
    Append(f)
  end
  else begin
    Rewrite(f);
  end;

  // Escribir
  writeln(f, DateTimeToStr(Now) + '  ->> ' + Str);
  CloseFile(f);

Basa con que vayas llamado al procedimiento a medida que vayas haciendo cosas:

Código Delphi [-]
  ...
  _Log('Conectando...');
  ...
  _Log('Conectado correctamente');
  ...
__________________
Germán Estévez => Web/Blog
Guía de estilo, Guía alternativa
Utiliza TAG's en tus mensajes.
Contactar con el Clubdelphi

P.D: Más tiempo dedicado a la pregunta=Mejores respuestas.

Última edición por Neftali [Germán.Estévez] fecha: 30-12-2008 a las 12:10:13.
Responder Con Cita