Open Webpage in a new window from code
-
To open a webpage from code i can to this
ShellExecute(NULL, _T("open"), _T("http://www.codeproject.com"), NULL, NULL, SW_SHOWNORMAL);
But if I already have some web pages open in IE, The page is opened in one of them. And I want a new instance of IE ( or whatever browser the user have installed ) to be opened. Is there any easy way of doing that? /Mathias -
To open a webpage from code i can to this
ShellExecute(NULL, _T("open"), _T("http://www.codeproject.com"), NULL, NULL, SW_SHOWNORMAL);
But if I already have some web pages open in IE, The page is opened in one of them. And I want a new instance of IE ( or whatever browser the user have installed ) to be opened. Is there any easy way of doing that? /MathiasI Found this article. http://www.codeproject.com/internet/urlnewwindow.asp problem fixed. Should have searched the site better from the start. :) /Mathias