.exe ausführen ?!?
-
Wie kann man durch buttonklick eine .exe starten ?!?
-
Such mal nach WinExec oder CreateProcess
-
damit
ShellExecute(NULL, "open", "C:\test\test.exe", NULL, NULL, SW_SHOWNORMAL);
exe mit pfad angeben.
kann natürlich auch eine variable sien.MFG TaccoGo
-
Such mal nach ShellExecute
findest du das hier:
ShellExecute
Performs an operation on a specified file.HINSTANCE ShellExecute(
HWND hwnd,
LPCTSTR lpOperation,
LPCTSTR lpFile,
LPCTSTR lpParameters,
LPCTSTR lpDirectory,
INT nShowCmd
);
-
thx