I want to run an exe (for example calc.exe or cmd.exe) inside a python gui (python 2.7 | Windows | PyQt). Have anybody an idea how can i do this? (something like that : htt
import subprocess
import time
import win32gui
...
def initUI(self):
# create a process
exePath = "C:\\Windows\\system32\\calc.exe"
subprocess.Popen(exePath)
hwnd = win32gui.FindWindowEx(0, 0, "CalcFrame", "计算器")
time.sleep(0.05)
window = QWindow.fromWinId(hwnd)
self.createWindowContainer(window, self)
self.setGeometry(500, 500, 450, 400)
self.setWindowTitle('File dialog')
self.show()
...
Result:
lose exe'menu