I have some python executable files. I want to design a button in GUI in C++ language. When I would click the button, those python executable file should be opened. Please help me figure out this task.
To just run an external program from C++, use ShellExecute() or ShellExecuteEx() or CreateProcess().
If you want to integrate your Python and C++ code, Pavel A's suggestion seems a good one.
David Wilkinson | Visual C++ MVP