<HTML dir=ltr><HEAD></HEAD>
<BODY>
<DIV id=idOWAReplyText6081 dir=ltr>
<DIV dir=ltr><FONT face=Arial color=#000000 size=2>I keep using Rebuild Solution, if that's what you mean...</FONT></DIV>
<DIV dir=ltr><FONT face=Arial color=#000000 size=2></FONT>&nbsp;</DIV></DIV>
<DIV id=idSignature29861>
<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> Wagner Sales<BR><B>Enviada:</B> qua 18-01-2006 18H45m<BR><B>Para:</B> Patricia Gonçalves<BR><B>Cc:</B> vtkusers@vtk.org<BR><B>Assunto:</B> Re: [vtkusers] Problem updating from vtk4.2.2 to vtk4.2.6<BR></FONT><BR></DIV>
<DIV><PRE style="WORD-WRAP: break-word">Hi Patricia,

Did cleaned you project before compile and link? I'm not Windows 
developer, but on UNIX these errors are commonly because your program 
are not really recompiled and relinked.

Regards

Wagner


Patricia Gonçalves wrote:
&gt; Hello, all!
&gt;  
&gt; I have a C++ program that was created with VTK4.2.2 (I think!) and I'm 
&gt; updating it to VTK4.2.6. There are no compilling or debugging errors, 
&gt; but when it starts executing it shows me a message box saying
&gt;  
&gt; "The procedure entry point ?InsertPoint@vtkPoints@@QAEX_JNNN@Z 
&gt; &lt;mailto:?InsertPoint@vtkPoints@@QAEX_JNNN@Z&gt; could not be located in 
&gt; the dynamic link library vtkCommon.dll." (in debug mode)
&gt;  
&gt; "The procedure entry point ?InsertNextCell@vtkPolyData@@QAEHHHPA_J@Z 
&gt; &lt;mailto:?InsertNextCell@vtkPolyData@@QAEHHHPA_J@Z&gt; could not be 
&gt; located in the dynamic link library vtkCommon.dll." (in release mode)
&gt;  
&gt; An example of InsertPoint and InsertNextCell used in the program is:
&gt;  
&gt; for (i = 1; i &lt;= m_pixels1; i++) {
&gt;
&gt;     float *x1, *x2;
&gt;
&gt;     if (m_matching[i][1] != 0) {
&gt;
&gt;         x1 = pPoly1-&gt;GetPoint(i-1);
&gt;
&gt;         x2 = pPoly2-&gt;GetPoint(m_matching[i][1]-1);
&gt;
&gt;         if (sample == m_pathsample) {
&gt;
&gt;             vtkPoints *points = vtkPoints::New();
&gt;
&gt;             points-&gt;InsertPoint(0, x1);
&gt;
&gt;             points-&gt;InsertPoint(1, x2);
&gt;
&gt;             vtkPolyData *pLine = vtkPolyData::New();
&gt;
&gt;             pLine-&gt;Allocate(1, VTK_CELL_SIZE);
&gt;
&gt;             pLine-&gt;SetPoints(points);
&gt;
&gt;             int p[2];
&gt;
&gt;             p[0] = 0;
&gt;
&gt;             p[1] = 1;
&gt;
&gt;             pLine-&gt;InsertNextCell(VTK_LINE, 2, p);
&gt;
&gt;         }
&gt;
&gt;     }
&gt;
&gt; }
&gt;
&gt; All the include and library directories are correct, so I don't know 
&gt; where these errors are comming from!
&gt;  
&gt; Does anyone know how to solve this?
&gt;  
&gt; Thank you so much!
&gt;  
&gt; Patrícia C. T. Gonçalves
&gt; e-mail: patgo@oniduo.pt
&gt; ------------------------------------------------------------------------
&gt;
&gt; _______________________________________________
&gt; This is the private VTK discussion list. 
&gt; Please keep messages on-topic. Check the FAQ at: http://www.vtk.org/Wiki/VTK_FAQ
&gt; Follow this link to subscribe/unsubscribe:
&gt; http://www.vtk.org/mailman/listinfo/vtkusers
&gt;   

</PRE></DIV></BODY></HTML>