본문 바로가기

Project/SMI

[C#] Window Mobile 강제로 Explorer 실행하기


//익스플러러를 실행할 프로세스 객체
System.Diagnostics.Process web_process = new System.Diagnostics.Process(); 


        private void druginfobt_Click(object sender, EventArgs e)
        {
            WepHide();
            closebt.Enabled = true;
            string newPath = "http://www.druginfo.co.kr/";
            web_process.StartInfo.FileName = newPath; //오픈된 Explorer의 경로 설정
            web_process.Start();
        }