I just want the c++ exe to launch a tkinter file when clicked, but google only gives things about embedding. Exe because I could put a cool icon on it...
#include <iostream>
#include <windows.h>
int main() {
ShellExecute(NULL, "MiniTime.pyw", "C:\Python27\python.exe", NULL, NULL, SW_SHOWDEFAULT);
return 0;
}
only the C++ cmd opens after that