qt程序启动后不继续执行怎么办

qt程序启动后不继续执行怎么办,第1张

改变配置环境变量。

1、打开电脑,找到控制面板,点击进入。

2、找到系统点击打开,在系统页面查春枯找高级系统设置点击打开帆森前。

3、在跳转出来的页面中,找到环境变量点击打开。

4、在跳转出来的页面中,点击OneDrive。

5、在跳态清转出来的页面中点击Path,然后点击编辑,然后确认。

6、找到xxx.dll文件目录,复制目录。

7、将复制的文件目录粘贴在Path新建的目录下,点击确认即可完成。

启动

QString filepath = QDir::currentPath()

    QString fullpath = filepath+"\\pp\\dist\\start"

    QString title = fullpath+"\\main.exe"

    title = title.replace("/","\\")

    fullpath = fullpath.replace("/","\\")

   袜答 QProcess p(this)

    p.setWorkingDirectory(fullpath)

    p.start("cmd", QStringList()<<"/c"<<"start main.exe")

    p.waitForStarted()

    p.waitForFinished()

关闭

    QProcess p(this)

    p.setWorkingDirectory(fullpath)

   庆洞 p.start("告差慧cmd", QStringList()<<"/c"<<"taskkill /f /t /im main.exe")

    p.waitForStarted()

    p.waitForFinished()


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/yw/8239298.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-04-14
下一篇 2023-04-14

发表评论

登录后才能评论

评论列表(0条)

保存