<HTML dir=ltr><HEAD></HEAD>
<BODY>
<DIV id=idOWAReplyText36578 dir=ltr>
<DIV dir=ltr><FONT face=Arial color=#000000 size=2>Yes, I changed from Visual Studio 6 to Visual Studio .NET 2003. But the program runs just fine with vtk4.2.2. in VS.NET 2003.</FONT></DIV>
<DIV dir=ltr><FONT face=Arial size=2></FONT>&nbsp;</DIV>
<DIV dir=ltr><FONT face=Arial size=2>Yes, I used /VERBOSE in the linker options and I can see that all the symbols exist!</FONT></DIV>
<DIV dir=ltr><FONT face=Arial color=#000000 size=2></FONT>&nbsp;</DIV></DIV>
<DIV id=idSignature43364>
<DIV><FONT face=Arial color=#000000 size=2>Patrícia C. T. Gonçalves</FONT></DIV>
<DIV><FONT face=Arial size=2>e-mail: patgo@oniduo.pt</FONT></DIV></DIV>
<DIV dir=ltr><BR>
<HR tabIndex=-1>
<FONT face=Tahoma size=2><B>De:</B> Cesar Rabak<BR><B>Enviada:</B> qua 18-01-2006 19H21m<BR><B>Para:</B> Patricia Gonçalves; vtkusers@vtk.org<BR><B>Assunto:</B> Re: [vtkusers] Problem updating from vtk4.2.2 to vtk4.2.6<BR></FONT><BR></DIV>
<DIV>
<DIV id=RTEContent>Patrícia,<BR><BR>By the way did you also changed the developing environment to a newer one?<BR><BR>From your build process can you check if the not found symbols exists in the DLL?<BR><BR><BR><B><I>Patricia Gonçalves &lt;patgo@oniduo.pt&gt;</I></B> escreveu: 
<BLOCKQUOTE class=replbq style="PADDING-LEFT: 5px; MARGIN-LEFT: 5px; BORDER-LEFT: rgb(16,16,255) 2px solid">
<DIV id=idOWAReplyText75012 dir=ltr>
<DIV dir=ltr><FONT face=Arial color=#000000 size=2>Hello, all!</FONT></DIV>
<DIV dir=ltr><FONT face=Arial size=2></FONT>&nbsp;</DIV>
<DIV dir=ltr><FONT face=Arial size=2>I have a C++ program that was created with VTK4.2.2 (I think!) and I'm updating it to VTK4.2.6. There are no compilling or debugging errors, but when it starts executing it shows me a message box saying</FONT></DIV>
<DIV dir=ltr><FONT face=Arial size=2></FONT>&nbsp;</DIV>
<DIV dir=ltr><FONT face=Arial size=2>"The procedure entry point <A href="mailto:?InsertPoint@vtkPoints@@QAEX_JNNN@Z" target=_blank>?InsertPoint@vtkPoints@@QAEX_JNNN@Z</A> could&nbsp;not be located in the dynamic link library vtkCommon.dll." (in debug mode)</FONT></DIV>
<DIV dir=ltr><FONT face=Arial size=2></FONT>&nbsp;</DIV>
<DIV dir=ltr><FONT face=Arial size=2><FONT face=Arial size=2>"The procedure entry point </FONT><A href="mailto:?InsertNextCell@vtkPolyData@@QAEHHHPA_J@Z" target=_blank><FONT face=Arial size=2>?InsertNextCell@vtkPolyData@@QAEHHHPA_J@Z</FONT></A><FONT face=Arial size=2> could&nbsp;not be located in the dynamic link library vtkCommon.dll." (in&nbsp;release mode)</FONT></FONT></DIV>
<DIV dir=ltr><FONT face=Arial size=2></FONT>&nbsp;</DIV>
<DIV dir=ltr><FONT face=Arial size=2>An example of InsertPoint and InsertNextCell used in the program is:</FONT></DIV>
<DIV dir=ltr>&nbsp;</DIV>
<DIV dir=ltr><FONT color=#0000ff size=2>for</FONT><FONT size=2> (i = 1; i &lt;= m_pixels1; i++) </FONT><FONT size=2>{</FONT></DIV>
<DIV dir=ltr>
<BLOCKQUOTE dir=ltr style="MARGIN-RIGHT: 0px">
<DIV><FONT color=#0000ff size=2>float</FONT><FONT size=2> *x1, *x2;</FONT><FONT color=#008000 size=2></FONT></DIV><FONT size=2></FONT>
<DIV><FONT color=#0000ff size=2>if</FONT><FONT size=2> (m_matching[i][1] != 0) </FONT><FONT size=2>{</FONT></DIV>
<BLOCKQUOTE dir=ltr style="MARGIN-RIGHT: 0px">
<DIV><FONT size=2>x1 = pPoly1-&gt;GetPoint(i-1);</FONT><FONT color=#008000 size=2></FONT></DIV><FONT size=2></FONT>
<DIV><FONT size=2>x2 = pPoly2-&gt;GetPoint(m_matching[i][1]-1);</FONT><FONT color=#008000 size=2></FONT></DIV></BLOCKQUOTE></BLOCKQUOTE><FONT size=2></FONT>
<DIV></DIV>
<BLOCKQUOTE dir=ltr style="MARGIN-RIGHT: 0px">
<BLOCKQUOTE dir=ltr style="MARGIN-RIGHT: 0px">
<DIV><FONT color=#0000ff size=2>if</FONT><FONT size=2> (sample == m_pathsample) {</FONT></DIV>
<BLOCKQUOTE dir=ltr style="MARGIN-RIGHT: 0px">
<DIV><FONT size=2>vtkPoints *points = vtkPoints::New();</FONT></DIV>
<DIV><FONT size=2><FONT color=#000000>points-&gt;InsertPoint(0, x1); </FONT></FONT></DIV><FONT size=2></FONT>
<DIV><FONT size=2><FONT color=#000000>points-&gt;InsertPoint(1, x2); </FONT></FONT><FONT color=#008000 size=2></FONT></DIV><FONT size=2></FONT>
<DIV><FONT size=2>vtkPolyData *pLine = vtkPolyData::New();</FONT></DIV>
<DIV><FONT size=2>pLine-&gt;Allocate(1, VTK_CELL_SIZE);</FONT></DIV>
<DIV><FONT size=2>pLine-&gt;SetPoints(points);</FONT></DIV>
<DIV><FONT size=2><FONT color=#000000>int p[2];</FONT></FONT></DIV><FONT size=2></FONT>
<DIV><FONT size=2><FONT color=#000000>p[0] = 0;</FONT></FONT></DIV><FONT size=2></FONT>
<DIV><FONT color=#000000 size=2>p[1] = 1;</FONT><FONT size=2></FONT></DIV><FONT size=2></FONT>
<DIV><FONT size=2>pLine-&gt;InsertNextCell(VTK_LINE, 2, p);</FONT></DIV></BLOCKQUOTE>
<DIV dir=ltr><FONT size=2>}</FONT></DIV></BLOCKQUOTE>
<DIV dir=ltr><FONT size=2>}</FONT></DIV></BLOCKQUOTE><FONT size=2>
<DIV>} </DIV></FONT></DIV>
<DIV dir=ltr><FONT face=Arial color=#000000 size=2>All the include and library directories are correct, so I don't know where these errors are comming from!</FONT></DIV>
<DIV dir=ltr><FONT face=Arial size=2></FONT>&nbsp;</DIV>
<DIV dir=ltr><FONT face=Arial size=2>Does anyone know how to solve this?</FONT></DIV>
<DIV dir=ltr><FONT face=Arial size=2></FONT>&nbsp;</DIV>
<DIV dir=ltr><FONT face=Arial size=2>Thank you so much!</FONT></DIV>
<DIV dir=ltr><FONT face=Arial size=2></FONT>&nbsp;</DIV></DIV>
<DIV id=idSignature96558 dir=ltr>
<DIV><FONT face=Arial color=#000000 size=2>Patrícia C. T. Gonçalves</FONT></DIV>
<DIV><FONT face=Arial size=2>e-mail: patgo@oniduo.pt</FONT></DIV></DIV>_______________________________________________<BR>This is the private VTK discussion list. <BR>Please keep messages on-topic. Check the FAQ at: http://www.vtk.org/Wiki/VTK_FAQ<BR>Follow this link to subscribe/unsubscribe:<BR>http://www.vtk.org/mailman/listinfo/vtkusers<BR></BLOCKQUOTE><BR></DIV><BR><BR>-- <BR>Cesar Rabak<BR>GNU/Linux User 52247.<BR>Get counted: http://counter.li.org/ 
<P>
<HR SIZE=1>
Yahoo! doce lar. <A href="http://us.rd.yahoo.com/mail/br/tagline/homepage_set/*http://br.yahoo.com/homepageset.html" target=_blank>Faça do Yahoo! sua homepage.</A> </DIV></BODY></HTML>