Я пишу приложение для Windows, и по событию нажатия кнопки я хочу запустить Internet Explorer (не браузер по умолчанию) вместе с элементом управления ActiveX, на который у меня есть URL.Вот что я попробовал:
private void myButton_ Click(object sender, EventArgs e)
{
string startMyProcess;
startMyProcess = "http://myservername/directory/myactivex.application";
//Start my process
try
{
ProcessStartInfo startInfo =
new ProcessStartInfo(@"C:\Program Files\Internet Explorer\iexplore.exe",
startMyProcess);
Process.Start(startInfo);
startInfo = null;
}
catch (Exception ex)
{
throw ex;
}
}
Спасибо за помощь, спасибо.