Ver Mensaje Individual
  #5  
Antiguo 13-01-2010
Avatar de droguerman
droguerman droguerman is offline
Miembro
 
Registrado: abr 2005
Ubicación: tierra
Posts: 999
Reputación: 22
droguerman Va por buen camino
Cita:
Empezado por Neftali Ver Mensaje
Creo que quiere decir que pruebes a pasar el nombre del fichero incluyendo dobles comillas:

Código Delphi [-]
 
// Algo así
ShellExecute(0, 'open', PChar(PathExe), PChar('"' + fichero_w + '"'), nil, SW_SHOW);
// O mejos esta
ShellExecute(0, 'open', PChar(PathExe), PChar(QuotedStr(fichero_w)), nil, SW_SHOW);
Dudo que funcione con quotedStr, hay que usar comillas dobles
__________________
self.free;
Responder Con Cita