Nel caso che si vuole avviare un processo (esempio internet Explorer) e dopo n secondi chiuderlo, il frammento qui di seguito illustra tale tecnica.
Process proc = new Process();
proc.StartInfo.FileName = "iexplore.exe";
proc.StartInfo.Arguments = "www.sito.it";
proc.Start();
System.Threading.Thread.Sleep(4000);
proc.Kill();
Iscriviti a:
Commenti sul post (Atom)
Nessun commento:
Posta un commento