Tagged Questions

60
votes
1answer
10k views

How to build Qt for Visual Studio 2010

I struggled finding a how-to which provides a stable solution for using Qt with Visual Studio 2010, so after collecting all the bits of information and some trial and error, I would like to write my ...
17
votes
12answers
9k views

Qt: Should I use Visual Studio, Qt Creator or something else? [closed]

I realize that there have been similar questions, but they seem to have been from when Qt Creator was still in beta, so the answer might have changed since then: We are going to start a project with ...
6
votes
3answers
3k views

Simultaneous development in Visual Studio and Qt Creator

I'm going to develop a bunch of projects with Qt that should compile both under Visual Studio with Qt integration (commercial) and Qt Creator with LGPL SDK. My primary IDE is VS but I've grown to like ...
6
votes
6answers
4k views

Building Opensource QT for Visual Studio 2005/2008

Does anyone have instructions on building the opensource version of QT? Now that the repository is opened up, I'm trying to build for VS2008 but I'm getting errors when it tries to build qmake. I ...
6
votes
3answers
2k views

What's the difference in the Visual Studio integration tools for Qt?

Trolltech has released a tool called "Visual Studio add-in" for their LGPL and GPL release of Qt. They state that the commercial version comes with a full Visual Studio Integration tool but I don't ...
5
votes
1answer
129 views

Broken indentation for Qt-specific constructions in Visual Studio

Automatic indentation in VS editor obviously does not know about Qt. And declarations of signals and slots are auto-formatted like this: class MyClass : public QObject { Q_OBJECT public: ...
5
votes
11answers
2k views

What's the C++ GUI building option with the easiest learning curve - VS/Qt/wxWidgets/etc.?

I'm looking to be able to build GUI applications quickly and painlessly as possible. I'm competent (though not expert, and have no formal training) in C++, but have never used a GUI building toolkit ...
4
votes
1answer
251 views

Integrating Qt Framework, Netbeans IDE, Visual Studio C++ Compiler

I'm using Qt 4.7.4 as C++ framework, Netbeans 7.0 as IDE and MinGW as C++ compiler. These are integrated well due to Netbeans ability and I'm coding my projects with them easily. I know in Qt ...
4
votes
5answers
4k views

How do I set up Qt paths in Visual Studio 2010?

I just downloaded and installed the latest versions of the Qt SDK, Qt Creator, and the Qt add-in for Visual Studio (I'm running VS 2010). First, I tried creating a Qt project in VS2010. It came up ...
4
votes
2answers
372 views

Visual Studio: How to setup Qt for a project that contains both 32-bit and 64-bit platforms?

I was wondering if anyone has experience with maintaining a Qt application on Visual Studio (2008+) that has both Win32 (32-bit) and x64 (64-bit) platforms? The default Qt project comes with only the ...
4
votes
3answers
7k views

Compiling Qt libraries to run with Visual Studio 2008, why does nmake fail?

I'm trying to get my Visual Studio Qt plug-in to work, so to recompile the Qt libraries i ran the following commands from a VS command prompt: c:\*Qtfolder*>configure -platform -win32-msvc2008 ...
4
votes
3answers
1k views

Building a library with Visual Studio that can be linked to a Qt project?

Right now I have some libraries that link easily to Visual Studio projects but I can't figure out how to link them with Qt. My idea is to write a VS project that wraps the functionality I need from ...
3
votes
3answers
1k views

Windows unicode commandline argv

So getting into the new millenia I rewrote my c++ code with: int main(int argc, wchar_t **argv) If built with either Unicode or MBCS options then when the app is run with a commandline arg, either ...
3
votes
1answer
664 views

Qt, CMake, Visual Studio and Q_OBJECT in cpp files

I'm developing a large project using Qt 4.6, CMake 2.8 and Visual Studio 2008 for the Windows platform. As far the build system goes, it's all standard stuff: I'm using CMake's QT4_WRAP_CPP macro to ...
3
votes
1answer
245 views

Visual Studio C++ exception… weirdness

I have a Qt application that I compile in release configuration, run, and then perform operation X in the program. Everything runs fine. I then compile it in debug configuration, run without ...
3
votes
3answers
1k views

why we integrate Qt with visual studio

I think Qt IDE(Qt creater) is itself enough to develop better to best project than any other language tools, then why we go for visual studio integration. is there have any advantage in doing so, ...
3
votes
5answers
736 views

How do I see the contents of Qt objects during debugging?

Many Qt classes uses pimpl, so they're very opaque to VS's debugger. This is bothersome when I want to check some internal Qt state to see if my code is doing it wrong or if I'm having wrong ...
3
votes
4answers
531 views

Retrieve revision number in VS with qmake

My current workflow: hg update (or whatever one uses to check out a revision) MyProject.pro → qmake → MyProject.vcproj Open Visual Studio, edit files Build project During the build step, how can I ...
3
votes
5answers
2k views

Is Qt Visual Studio add-in a subset of Qt Visual Studio integration?

Qt software recently released Qt Visual Studio Add-in. Does anybody know, is it a subset of Visual Studio Integration, or is there included something new? Anyone tried both?
2
votes
2answers
62 views

Run-Time Check Failure #0 - The value of ESP was not properly saved across a function call

I created a simple program that demonstrates the runtime error I'm getting with my Qt application that uses multiple inheritance. The inheritance tree looks like: QGraphicsItem (abstract) \ ...
2
votes
1answer
23 views

In new Qt SDK, I get <QtInstallationDir>\QtSDK\QtCreator\lib\qtcreatorcdbext32\qtcreatorcdbext.dll cannot be found error

I installed the latest Qt SDK. I see that though mine is a 32-bit Windows XP, the installation creates "qtcreatorcdbext64" directory instead of "qtcreatorcdbext32" directory. I get the ...
2
votes
1answer
98 views

link error compiling qt project on visual 2010

i try to compile a qt project with visual 2010, but i have some link error when i rebuilt my solution : error LNK2001: unresolved external symbol "public: virtual int __thiscall ...
2
votes
1answer
56 views

Using prebuilt Qt binaries for MSVS 2008 with MSVS 2010

I have tried to use the pre-built Qt binaries for MSVS 2008 with MSVS 2010. (There are no pre-built binaries for MSVS 2010.) This works fine for release builds, but with debug builds my Qt app fails ...
2
votes
2answers
401 views

How should multiple projects be managed in Qt Creator?

I have an exe that depends on multiple static libs and in visual studio, they are all managed as part of 1 sln file and the exe has dependencies on the static libs. How can this be set up in Qt ...
2
votes
2answers
1k views

Integrating Qt 4.7.2 with Visual Studio 2010

I am trying to add Qt 4.7.2 to my Visual Studio 2010. I downloaded the source code, changed the environment variables, ran a configure -no-webkit command (which ended successfully), and an nmake ...
2
votes
4answers
255 views

What is the best IDE choice for GUI programming using QT4 on a windows platform? [closed]

I am going to start developing GUI applications with QT on a Windows platform. I have Visual Studio 2008. I would like some suggestions as to just go with the QT IDE and do everything there or just ...
2
votes
5answers
2k views

What can explain std::cout not to display anything?

For whatever reason, std::cout does not display anything with my application. The description of my development environment follows. I am working on a Qt application using Qt Creator. Since Qt ...
2
votes
7answers
3k views

Hide console of Windows Application

i have a Qt application. when i run this application, there is a console opening behind the application. in development it is nice because i see debug outputs on the console. now, i want to give ...
2
votes
3answers
2k views

How to convert a regular win32 (VC++ vcproj) project to a Qt project?

How can I convert existing vcproj files to project files that the QT add-in to Visual Studio recognizes and treats as valid Qt projects? Should I just bite the bullet and create new projects to ...
2
votes
2answers
1k views

QT for windows CE

I have installed QT for windows CE using this link http://qt.nokia.com/products/platform/qt-for-windows-ce for visual studio8, I can see Qt tab in VS IDE. I tried to create new application for QT am ...
2
votes
2answers
3k views

Microsoft Visual Studio: Loading resources in Qt application (without plug-in)

We don't have a Qt plug-in installed for MSVS, and it makes me wonder how/whether it is possible to load resources (images, etc) to the application.
2
votes
2answers
1k views

QT: difference between moc output in debug and release?

Using the QT Visual studio integration, adding a new QT class adds two separate moc.exe generated files - one for debug and one for release (and one for any other configuration currently existing). ...
1
vote
2answers
105 views

How to create executable file for a Qt Application?

I've been searching on the internet for some useful and clear information about this, it's annoying that such a trivial thing is so hard to do. What I need is to create an executable file for my Qt ...
1
vote
1answer
150 views

Qt 4.7.4 and Microsoft Visual C++ 2010 Express

I've just downloaded and installed the latest Qt SDK (4.7.4) and a very recent version of Microsoft Visual C++ 2010 Express. I want to be able to build applications using the QtSDK from Visual ...
1
vote
1answer
73 views

How to integrate Qt into an existing application development workflow?

I have been playing with Qt for a week or so, with the aim of integrating Qt dialogs into an existing application. I've figured out use a basic Qt Message box from my MFC application, eg: extern "C" ...
1
vote
1answer
63 views

Possible to use Qt Open Source integrated in Visual Studio?

I'm currently having issues installing Qt (Open Source Edition) such that I can use it in integrated into Visual Studio 2010. I realize that the 2008 edition will have deployment issues, and so I ...
1
vote
3answers
189 views

Q_OBJECT Problem in Visual C++

I have received a Visual C++ QT based project from our customer. I have installed QT libraries then I have compiled the project. The Project was compiled without any problems. Now, I need to include ...
1
vote
1answer
72 views

Error when trying to use QSettings in a MFC app

in dlg.h, i put the following #include<QSettings> it compiles with no problems but when i try to do the operations in the .cpp void dlg::OnBnClickedOk(){ QString ...
1
vote
1answer
419 views

Static linking with a Qt project

I've got a Qt project I've built in Visual Studio 2010 Professional. However, when I run it (in either Debug or Release mode) it asks for a few Qt dll's. It works if I supply the dll's and throw them ...
1
vote
0answers
194 views

QT in Visual Studios 2008/2010

I installed the SDK for QT for Visual studios. I installed the plugin. I created a simple project in QT Creator with just a dialog. I then try and import the project into visual studios and get this ...
1
vote
1answer
130 views

MS Visual Studio 2008 - Qt Addin - UI objects prompts do not appear

I create GUI application in QT. I am coding in Ms Visual Studio 2008 instead of Qt Creator, because I am using some external libraries (Xalan, Xerces)... The question is, how to customize Ms Visual ...
1
vote
1answer
79 views

Tracing an executable file compiled in visual studio

How can we trace a compiled application from windows 7. I can see in the event viewer that some DLL files which my program is trying to fetch are causing problems but I can't figure out why.(This is ...
1
vote
1answer
280 views

can't open qt project file in visual studio 2008

I have installed Qt sdk 4,7 , qt libs for Visual studio , and the addin for VS. And I want to open a qt project ( psi - im ) that was created with QT compiler (qt creator) and is a " .pro" file. ...
1
vote
2answers
482 views

add Qt to existing Visual Studio c++ project

I've got an existing Visual Studio c++ project. It creates a mainwindow using GLUT and got a right-click menu (also using glut) all I want to do now is to open a second window used as property ...
1
vote
1answer
723 views

Mercurial or Git [closed]

Hello I need a good SCM with integration in Visual Studio 2010 and ability to work over internet, I mean other users should be able to checkin/checkout files through internet/network. I saw Git and ...
1
vote
1answer
991 views

Visual Studio solutions in Qt Creator

I am using Qt 4.5 and having Qt Creator as the IDE. I am quite comfortable with it. I know we can open the .pro files (from the Qt Creator) in the Visual Studio IDE. But how about the reverse? i.e How ...
1
vote
1answer
514 views

Linking Error Building 64bit Qt app on 32bit XP machine

I'm trying to build a 64 bit version of my application (and yes I really do need the memory) on my 32bit xp dev box for production testing on our Vista64 server. Previously, I have built w/o any ...
1
vote
3answers
2k views

Which is better? Qt Creator or Visual Studio IDE

I am currently using Qt Creator 1.3 for my Qt applications. I know it uses jom for make step which is better when we have multi core processors. But besides that what are all the advantages of using ...
1
vote
2answers
186 views

Include QT file problem in Visual Studio 2008

When I type #include <QObject> it complains that it couldn't find file. but if I type #include <QtCore\QObject> It works properly. I moved VS2005 to VS2008, this was not the case ...
1
vote
1answer
587 views

Can't catch newConnection() signal from QTcpServer

I am trying to make a simple server thread in QT to accept a connection, however although the server is listening (I can connect with my test app) I can't get the newConnection() signal to be acted ...

1 2