Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
HINSTANCE ShellExecute(
HWND hwnd,
LPCTSTR lpOperation,
LPCTSTR lpFile,
LPCTSTR lpParameters,
LPCTSTR lpDirectory,
INT nShowCmd);
ShellExecute(handle, "open";, "MyFile.txt", NULL, NULL, SW_SHOWNORMAL); // opens MyFile with default editor for text files
ShellExecute(handle, NULL, "MyEditor.exe";, "MyFile.txt", NULL, SW_SHOWNORMAL); // opens MyFile with MyEditor program
ShellExecute(handle, "print", "MyFile.txt", NULL, NULL, SW_SHOWNORMAL); // Prints MyFile
ShellExecute(handle, "explore", "C:\\", NULL, NULL, SW_SHOWNORMAL); // Explores root of C: drive