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.
Moof said:How can i execute an external exe from visual c++, for example notepad.exe??
#include <process.h>
char* argv[]={"param1","param2"}; // command-line parameters for notepad.exe
void main(void) {
_execvp("notepad.exe",argv); // will search for notepad.exe in current folder and in PATH
}