Ver Mensaje Individual
  #2  
Antiguo 18-03-2004
__cadetill __cadetill is offline
Miembro
 
Registrado: may 2003
Posts: 3.387
Reputación: 25
__cadetill Va por buen camino
Algo así no te serviría?

Código:
procedure TForm1.Button1Click(Sender: TObject);
begin
  ShellExecute(handle, 'open', 'ping', '192.168.100.1', '', sw_normal);
  ShellExecute(handle, 'open', 'ping', '192.168.100.2', '', sw_normal);
  ShellExecute(handle, 'open', 'ping', '192.168.100.3', '', sw_normal);
end;
PD: añade ShellAPI en el uses.
Responder Con Cita