Ver Mensaje Individual
  #6  
Antiguo 05-03-2013
teecweb teecweb is offline
Miembro
NULL
 
Registrado: feb 2013
Posts: 64
Reputación: 12
teecweb Va por buen camino
Talking

este es el filename :
Código Delphi [-]
FileName:=ExtractFileDir(path)+'\Desinstalar\'+'unins000.exe';
 procedure desistalarItem(const FileName: string);
 var
  ErrorCode: Integer;
                     begin
                     if not Exec(FileName,'', '', SW_SHOW, ewWaitUntilTerminated, ErrorCode) then
                           begin
                            MsgBox('DeinitializeSetup:' #13#13 'Execution of ''' + FileName + ''' failed. ' + SysErrorMessage(ErrorCode) + '.', mbError, MB_OK);
                           end
                     end;
Entonces cada de vez que ejecuto unins000.exe sale el mensaje de confirmacion predefinido por inno setup preguntando si desea desinstalar ..lo que requiero es que no salga ese mensaje de confirmacion..gracias por sus respuestas.

Última edición por teecweb fecha: 05-03-2013 a las 18:26:00.
Responder Con Cita