Hello,
I have question conserning ShellExecute.
I have function like this:
If I then use this function like this:
sometimes only the first web page is opened, but sometimes all of them. Could someone enlighten me what I should do so that all the web pages opened with OpenURL-function are always opened? Also, better ways to open web pages are very welcome. I use Visual Studio 2008 Express and Visual Studio 2013 Express.
I have question conserning ShellExecute.
I have function like this:
Code:
void OpenURL(LPWSTR url) {
//Notice! 6 parameters, not 7
ShellExecute(NULL, L"open", url, NULL, NULL, NULL);
}
Code:
OpenURL(L"http://www.google.com/"); OpenURL(L"http://bytes.com/"); OpenURL(L"http://www.yahoo.com/");
Comment