I made a program using Win32Api. In the program, it has "ShellExecute" phrase in order to execute chrome for searching. Following is a abstraction fo what i wrote.
#include <windows.h>
#include <shellapi.h>
int main () {
ShellExecute(NULL, L"open", searching_url, NULL, NULL, SW_SHOWMAXIMIZED);
}
It works in my computer. But, I sent this windows app to other people and they said it doesn't work. I mean only shellexecute doesn't work. I cannot catch where to start figuring out what's wrong here.
Would you please suggest How I figure it out in structured way? Thanks.