Ver Mensaje Individual
  #2  
Antiguo 27-08-2007
Avatar de dec
dec dec is offline
Moderador
 
Registrado: dic 2004
Ubicación: Alcobendas, Madrid, España
Posts: 13.107
Reputación: 34
dec Tiene un aura espectaculardec Tiene un aura espectacular
Hola,

Prueba con "ShellExecute":

Código Delphi [-]
uses
  Windows, ShellApi;

procedure TForm1.Button1Click(Sender: TObject);
begin
  ShellExecute(GetActiveWindow(),'open','archivo.bat',nil,nil,SW_NORMAL);
end;
__________________
David Esperalta
www.decsoftutils.com
Responder Con Cita