i created a project in Visual Studio 2013 with Qt. I added Qt to VS2013 with the add-in and started to design a mainwindow in the Qt Creator.
My code looks like this : main.cpp :
#include "test2.h"
#include <QtWidgets/QApplication>
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
test2 w;
w.show();
return a.exec();
}
test2.h :
#ifndef TEST2_H
#define TEST2_H
#include <QtWidgets/QMainWindow>
#include "ui_test2.h"
class test2 : public QMainWindow
{
Q_OBJECT
public:
test2(QWidget *parent = 0);
~test2();
private:
Ui::test2Class ui;
};
#endif // TEST2_H
test2.cpp :
#include "test2.h"
test2::test2(QWidget *parent)
: QMainWindow(parent)
{
ui.setupUi(this);
}
test2::~test2()
{
}
After this I built the solution and moved it to a virtual machine.
Visual Studio : 64 bit Release Version
Qt : Qt 5.3.2 for Windows 64-bit (VS 2013, OpenGL, 573 MB)
Virtual machine : 64 bit.
Installed the Visual C++ Redistributable für Visual Studio 2013 on the virtual machine.
The VmWarePlayer is used for the virtual machine.
On another normal 64bit computer everything works fine.
Problem signature:
Problem Event Name: APPCRASH
Application Name: test2.exe
Application Version: 0.0.0.0
Application Timestamp: 5434e66b
Fault Module Name: MSVCR120.dll
Fault Module Version: 12.0.21005.1
Fault Module Timestamp: 524f83ff
Exception Code: c000001d
Exception Offset: 0000000000095c01
OS Version: 6.1.7600.2.0.0.256.48
Locale ID: 1031
Additional Information 1: 6abf
Additional Information 2: 6abf78853a12e8504a5f26d8c231927b
Additional Information 3: 1f6d
Additional Information 4: 1f6d0c3c3ab43abf0b4e81f905afc8ea
My directory looks like this :
