问题标签 [qt-creator]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
c++ - 无法在 Visual C++ 中加载 SQL 驱动程序(但在 QtCreator 中加载)
我有一个需要 MySql 驱动程序的 QT 应用程序。我有一个用于使用 QtCreator 编译应用程序的 .pro 文件和一个用于 Visual C++ 2008 Express 的 .vcproj。代码是相同的,它编译顺利,但由 Visual C++ Express 创建的可执行文件给了我以下输出并拒绝加载任何驱动程序/插件:
QSqlDatabase:未加载 QMYSQL 驱动程序 QSqlDatabase:可用驱动程序:
我使用 QCoreApplication 来识别插件所在的位置,并且似乎两个可执行文件具有相同的路径,因此它们都应该看到插件。一个会,另一个不会。
代码是标准的。
QSqlDatabase db;
db = QSqlDatabase::addDatabase("QMYSQL");
db.setHostName("localhost");
db.setPort(3306);
db.setDatabaseName("dbase");
db.setUserName("user");
db.setPassword("pwd");
bool ok = db.open();
QT 附带的 SqlBrowser 示例也会发生同样的情况,所以我认为代码不是问题所在。
c++ - Qt - 查找鼠标屏幕 x,y - 甚至应用程序关闭
我是 Qt 的新手。我想要一个窗口来跟随鼠标在屏幕上移动。(对阅读很有帮助)
我能想到的最好的方法是使用 QPoint QCursor::pos() 每 0.1 秒移动一次窗口的计时器。
与其不断地旋转这个计时器,有没有我可以利用的事件系统?这样看起来会更流畅,并且使用更少的计算机。
有没有更好的办法?
谢谢,
麦克风
qt - QT4.5 中的 qembed 工具在哪里?
或者我如何将 .qm 文件嵌入到我的应用程序中?
我正在使用 qt-creator。
谢谢。
c++ - 如何让选项卡控件接管 Qt Creator 中的整个窗口?
我想要一个选项卡控件“停靠”到 Qt Creator 中的整个窗口面板。现在在 Winforms 和 WPF 中这非常容易,但在 Qt 中它不起作用。
我已经尝试了所有的布局、网格布局等。它只是缩小了选项卡,而不是让它们增长到填充。因此,请先测试一个解决方案,然后再告诉我应该明确的答案是什么导致它不起作用。
omg QQ 这让我发疯
java - Qt Creator 是否存在 Java 插件
我正在努力寻找一个允许我在 Qt Creator 中使用 Java 的插件。我的问题是:
- 这样的插件是否存在?
- 如果它不存在,为什么不呢?Java 和 Qt 之间是否存在更广泛的冲突?
提前致谢,
埃内斯托
qt-creator - QWT/creator dll problems
I have been using qwt for some time, with the MSVC++ integrated versions of QT. Lately, I have been experimenting successfully with the QT Creator SDK, which uses the mingw-g++ tool chain, etc.
I can build qwt with no compile or link errors. However, when I try to run any executables (such as the qwt examples) I get an error
the procedure entry point ??0Brush@@QAE@W4GlobalColor@Qt@@W4BrushStyle@2@@Z could not be located in the dynamic link library QtGuid4.dll
I have tried moving the correct version of QtGuid4.dll (the one from the Mingw version of qt) into the local directory, checked my paths, etc--no joy. I have renamed the qtguid4.dll to a different name to make sure it was the one being used--it is, if I rename it, the system can't find the dll and wont run.
I do note that the C:\Qt\2009.03\qt\bin (the mingw one) is 134779 kb, while the msvc++ version is 11,380 kb--this seems like a huge discrepancy--
any ideas? things to try next? I have done the usual google searches, etc, with no success
qt - QT Designer --- Designer.exe 总是在我启动它时崩溃,崩溃也与对 QtCore4.dll 的调用有关,有什么建议吗?
我是一个正在尝试使用 QT creator 的新手,我安装了最新版本“qt-win-opensource-4.5.1-mingw”。除了启动 QT Designer 之外,一切都运行良好。我真的不知道确切的问题是什么。但是每当我尝试以可视方式编辑我的项目甚至启动 QT Designer 本身时,窗口都会弹出一条错误消息其中提到“designer.exe 已停止工作”。
我尝试使用 Visual Studio 进行调试,问题出在调用某些 DLL 函数的某些步骤中,但我并不真正了解发生了什么。
windows - 使用 MinGW 编译 Qt Creator
如何在 Windows XP 中使用MinGW重新编译Qt Creator ?
qt - 将 GUI 应用程序与 QtCreator 中的静态库链接
使用 MinGW 从源代码构建库然后在 GUI 应用程序的项目中引用它的正确方法是什么?我不熟悉 gcc 和 makefile,但我认为必须有一个实用程序可以从现有源生成 makefile。
库本身不依赖于标准 C 库以外的任何东西。
谢谢!
qt - Qt Creator / Qt 嵌入式小部件演示
我已经从诺基亚网站下载了嵌入式小部件演示的源代码,并试图让它编译。我最终得到以下错误:
编译器(MinGW32)消息:
在 ../../src/basicgraph/qtbasicgraph.cpp:9 中包含的文件中:../../src/basicgraph/qtbasicgraph.h:14:17:QtGui:没有这样的文件或目录
违规行是
Qt 创建者 1.2.0,Qt 2009.03
我检查了路径等,一切似乎都很好。我已经检查以确保我已经隐式包含QT += gui
并且我没有包含在and文件 QT -= gui
中的任何位置。.pro
.pri
不做任何改动后,我使用了VS2005和相应的Qt 4.4.3商业版,编译运行良好。
我已经用谷歌搜索了这个错误,并发现其他人提出了类似的问题(但不是在这里),但没有发布答案......所以我将不胜感激。
谢谢。
乔纳森·豪兰