Are you mixing debug and release builds of Qt? &nbsp;One can tell by looking at the output window in visual studio.<br><br>Clint<br><br>----- Reply message -----<br>From: &quot;algr&quot; &lt;alexander.gryanik@gmail.com&gt;<br>Date: Wed, Jun 15, 2011 6:36 am<br>Subject: [vtkusers] QVTKWidget issues<br>To: &lt;vtkusers@vtk.org&gt;<br><br>Hi everyone,<br>I&#39;m new to VTK and Qt. I can compile and run Qt and VTK applications but I<br>need to integrate VTK into my Qt GUI. I tried to create an application using<br>QVTKWidget but it crashes on<br>QVTKWidget *myWidget = new QVTKWidget; <br>with following message<br>The program &#39;[6048] xxxxx.exe: Native&#39; has exited with code 1 (0x1).<br><br>If I comment this line everything works fine.<br><br>#include &lt;QMainWindow&gt;<br>#include &lt;QWidget&gt;<br><br>int main(int argc, char *argv[])<br>{<br> &nbsp;QApplication app(argc, argv);<br><br> &nbsp;QMainWindow mainWindow;<br> &nbsp;mainWindow.setWindowTitle(&quot;My Widget&quot;);<br> &nbsp;mainWindow.setGeometry(100, 100, 500, 355);<br> &nbsp;<br> &nbsp;QVTKWidget *myWidget = new QVTKWidget;<br> &nbsp;<br> &nbsp;mainWindow.show();<br> &nbsp;<br> &nbsp;return app.exec();<br>}<br><br>Any ideas?<br><br>Regards, Alex<br><br>--<br>View this message in context: <a href="http://vtk.1045678.n5.nabble.com/QVTKWidget-issues-tp4491051p4491051.html">http://vtk.1045678.n5.nabble.com/QVTKWidget-issues-tp4491051p4491051.html</a><br>Sent from the VTK - Users mailing list archive at Nabble.com.<br>_______________________________________________<br>Powered by www.kitware.com<br><br>Visit other Kitware open-source projects at <a href="http://www.kitware.com/opensource/opensource.html">http://www.kitware.com/opensource/opensource.html</a><br><br>Please keep messages on-topic and check the VTK FAQ at: <a href="http://www.vtk.org/Wiki/VTK_FAQ">http://www.vtk.org/Wiki/VTK_FAQ</a><br><br>Follow this link to subscribe/unsubscribe:<br><a href="http://www.vtk.org/mailman/listinfo/vtkusers">http://www.vtk.org/mailman/listinfo/vtkusers</a><br><br><br>