//익스플러러를 실행할 프로세스 객체
System.Diagnostics.Process web_process = new System.Diagnostics.Process();
private void druginfobt_Click(object sender, EventArgs e)
System.Diagnostics.Process web_process = new System.Diagnostics.Process();
private void druginfobt_Click(object sender, EventArgs e)
{
WepHide();
closebt.Enabled = true;
WepHide();
closebt.Enabled = true;
string newPath = "http://www.druginfo.co.kr/";
web_process.StartInfo.FileName = newPath; //오픈된 Explorer의 경로 설정
web_process.Start();
}
web_process.StartInfo.FileName = newPath; //오픈된 Explorer의 경로 설정
web_process.Start();
}
'Project > SMI' 카테고리의 다른 글
SMI (WindowMobile Programming) (0) | 2010.12.06 |
---|---|
[C#] DateTime을 이용한 알람 설정 (0) | 2010.12.06 |
[C#] String속성 : LastIndexOf (0) | 2010.12.04 |
[C#] Enum 사용 (0) | 2010.12.02 |
[C#] 메인폼 객체를 다른 생성된 폼에서 사용할 경우 (0) | 2010.11.28 |