Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
QProcessは、単に黒いコンソールウィンドウを表示しません。
これは私が使用するコードです:
QProcess*p=new QProcess(this); p->start("cmd.exe");
cmd.exeをcalc.exeに置き換えると、電卓が正常に起動します。
代わりにこれを試してください:
QProcess::startDetached("cmd.exe");