Thanks for replying guys. I am using the full blown professional version of visual studio 2005(and not the express version) and all the dlls that it says that it cannot find are actually there in the /program files(x86)/visual studio/... folders. My current OS is windows XP Pro X64.
<br>Also I am not using a precompiled version of either vtk or qt. I downloaded the source code for both of them and installed them. I have installed Qt as per the instructions here: <a href="http://qtnode.net/wiki/Qt4_with_Visual_Studio">
http://qtnode.net/wiki/Qt4_with_Visual_Studio</a>. <br>It works fine for me with visual studio. Also the Vtk by itself works fine for me.The problem comes only when I am trying to use QVTK. I dont know whats going wrong here.
<br><br>Thanks,<br>Ashish<br><br><div><span class="gmail_quote">On 10/12/06, <b class="gmail_sendername">Goodwin Lawlor</b> <<a href="mailto:goodwin.lawlor@ucd.ie">goodwin.lawlor@ucd.ie</a>> wrote:</span><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
Ashish Singh wrote:<br>> Hi,<br>><br>> I want to use Qt to develop a GUI for my VTK application, so I recently<br>> installed Qt 4.1.4 on my workstation and reinstalled VTK with the vtkgui<br>> support and qvtk 'ON'. When I tried examples(ImageViewer and Events)
<br>> from the directory ..VTK/Examples/GUI/Qt, I get the following pop up error.<br>><br>> 'This application has failed to start because MSVCP80.dll was not found.<br>> Re-installing the application may fix this problem. '
<br>><br>> The examples compile and build fine, but when I run them( when I run the<br>> executable), I get the above error.<br>> Can anyone please tell me what is going wrong here? I am working with Qt<br>>
4.1.4 and VTK 5.0.2 on windows XP platform.<br>><br>> Thanks,<br>> Ashish<br><br>Hi Ashish,<br><br>Handling the new crt dlls can be very tricky... I circumvent them by<br>statically compiling them into my projects.
<br><br>In cmake, everywhere you see "/MD" or "/MDd" change it to "/MT" or "/MTd".<br><br>Within Visual C++, go to the project properties page, click<br>"Configuration Properties", then "C/C++", then "Code Generation". In the
<br>table on the right pane, change the "Runtime Library" to "Multi-threaded<br>(/MT)" or "Multi-threaded (/MTd)" if your building a debug version.<br><br>You wont have to worry if other windows machines have the new
<br>MSVCP80.dll etc. files when distributing your app.<br><br>hth<br><br>Goodwin<br><br>_______________________________________________<br>This is the private VTK discussion list.<br>Please keep messages on-topic. Check the FAQ at:
<a href="http://www.vtk.org/Wiki/VTK_FAQ">http://www.vtk.org/Wiki/VTK_FAQ</a><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></blockquote></div><br>