ProcessStartInfo

// ProcessStartInfo
    class MyProcess1
    {
        // Open the Internet Explorer application.
        void OpenApplication(string myFavoritesPath)
        {
            // Start Internet Explorer. Default to the home page.
            Process.Start("0516Caret.exe");

            // Display the contents of the favorites folder in the browser.
            Process.Start(myFavoritesPath);
        }

        // Opens urls and .html documents using Internet Explorer
        void OpenWithArguments()
        {
            // url's are not considered documents. They can only be opened 
            // by passing them as arguments
            Process.Start("C:\\Program Files\\Internet Explorer\\iexplore.exe", "wwww.baidu.com");

            // Start a Web page using a browser associated whth .html ans .asp files
            Process.Start("C:\\Program Files\\Internet Explorer\\iexplore.exe",
                "D:\\InstallSoftware\\JavaScript\\code\\0423\\0423-9.html");
            Process.Start("C:\\Program Files\\Internet Explorer\\iexplore.exe",
                "http://blog.csdn.net/liangjisheng");

            //Process.Start("C:\\Program Files\\Internet Explorer\\iexplore.exe",
               // "D:\\InstallSoftware\\JavaScript\\code\\0423\\0423-9.asp");
        }

        // User the ProcessStartInfo class to start new processes, both in a 
        // minimized mode
        void OpenWithStartInfo()
        {
            ProcessStartInfo startInfo = new ProcessStartInfo(
                "C:\\Program Files\\Internet Explorer\\iexplore.exe");
            startInfo.WindowStyle = ProcessWindowStyle.Minimized;
            Process.Start(startInfo);
            startInfo.Arguments = "www.baidu.com";
            Process.Start(startInfo);
        }

        static void Main()
        {
            // Get the path that stores favorite links.
            string myFavoritePath = Environment.GetFolderPath(
                Environment.SpecialFolder.Favorites);
            MyProcess1 myProcess1 = new MyProcess1();

            //myProcess1.OpenApplication(myFavoritePath);
            //myProcess1.OpenWithArguments();
            //myProcess1.OpenWithStartInfo();
        }
    }
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值