Ver Mensaje Individual
  #5  
Antiguo 31-12-2008
brandolin brandolin is offline
Miembro
 
Registrado: jul 2003
Ubicación: Mendoza
Posts: 324
Reputación: 21
brandolin Va por buen camino
Dando vueltas por alli encontre esto
Código Delphi [-]
procedure TRegware4.CheckVariablesSet; 
begin 
  if ValidateGUID(FProgGUID) = false then 
    ShowMessage('Mr. Programmer forgot to set the ProgGUID property to a ' + 
      'valid GUID string!  Tsk, Tsk...'); 
  if (FSeed1 = 0) or (FSeed2 = 0) or (FSeed3 = 0) then 
    ShowMessage('Mr. Programmer... you did not set the Seed properties properly!  Tsk, Tsk...'); 
end;

por lo que puedo ver parece que son mensajes de advertencias por no encontrarse configuradas dichas variables.... configurando eso... problema solucionado...

PD a el componente en cuestion es RegWare4...
Responder Con Cita