With the help of the function int system (const char* command);
I can execute an application from another application. The stdlib.h
contains the function system
.
For example:
click button1 in application1 -> open application2.
The Button1 clicked event executes the function
system(application2.app);
But when application2 is executed application1 freezes until application2 will be closed. Is it possible to execute application2 without blocking application1?