안녕하세요 초보개발자입니다.
질문 답변부탁드립니다..(__)
System.Diagnostics.Process.Start("IExplore.exe", url);
이렇게 실행하면 url 에 대한 explore 창이 뜨는데요,
제가 하고싶은것은, 크롬을 먼저 실행하고, 만약 크롬이 없다면 IE 를 실행하고싶어요
즉,
if(크롬이 깔려있으면)
System.Diagnostics.Process.Start("Chrome.exe", url);
else
System.Diagnostics.Process.Start("IExplore.exe", url);
이렇게하고싶어요...
구글링해도 안나오네요..
코딩방법좀알려주세요