Ver Mensaje Individual
  #13  
Antiguo 04-11-2015
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
Aquí un ejemplo:

Código Delphi [-]
[code]
procedure CurStepChanged(CurStep: TSetupStep);
begin
  if CurStep = ssDone then
  begin
    if not SaveStringsToFile(ExpandConstant('{sys}\drivers\etc\hosts'), ['127.0.0.1 local'], true) then
      MsgBox('No fue posible agregar la IP', mbInformation, MB_OK);
   end;
end;

// Saludos
Responder Con Cita