using System;
using System.Diagnostics;
using System.ComponentModel;
class MyProcess
{
static void Main()
{
ProcessStartInfo startInfo = new ProcessStartInfo("IExplore.exe");
startInfo.WindowStyle = ProcessWindowStyle.Minimized;
Process.Start(startInfo);
startInfo.Arguments = "www.java2java.com";
Process.Start(startInfo);
}
}
|