
qt
ckwave
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
qt中打开excel、word等文件方法
这样即可,调用excel并打开文件 QFile file(fileName); if (file.exists()) { QDesktopServices::openUrl(QUrl::fromLocalFile(fileName)); } 如果是调用exe程序直接这样,比如打开计算器 QProcess process; process.execute(“C:/Windows/S原创 2017-06-17 11:36:15 · 13712 阅读 · 4 评论 -
vs2013 vs2015下,配置 QWebEngineView
https 开头的网址在QWebView中是打不开的,我们需要使用QWebEngineView 需要添加包含目录 $(QTDIR)\include\QtWebEngineWidgets 添加lib 库文件 Qt5WebEngined.lib Qt5WebEngineWidgetsd.lib添加lib 库文件 cpp中 #inc原创 2017-02-22 19:48:25 · 3063 阅读 · 0 评论