<DIV>Hi, everyone,</DIV>
<DIV>&nbsp;&nbsp;&nbsp; I use&nbsp;VC and VTK 5.0.3&nbsp;to write a win32 console application.</DIV>
<DIV>&nbsp;&nbsp;&nbsp; in my codes, I want&nbsp;to use class vtkStdString to save&nbsp;some&nbsp;correlative&nbsp;information. but when I compile it, I get a error :</DIV>
<DIV>&nbsp;&nbsp;&nbsp; C:\vtk\common\vtkstdstring.h(25) : fatal error C1083: Cannot open include file: 'vtkstd/string': No such file or directory<BR>&nbsp;&nbsp;&nbsp; Error executing cl.exe.</DIV>
<DIV>&nbsp;&nbsp;&nbsp; so I have to find class vtkStdString's source codes, and I find this : </DIV>
<DIV>&nbsp;&nbsp;&nbsp; #include &lt;vtkstd/string&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; // For the superclass.</DIV>
<DIV>&nbsp;&nbsp;&nbsp; and this is the reason that&nbsp;my&nbsp;codes&nbsp;make a mistake.</DIV>
<DIV>&nbsp;&nbsp;&nbsp; because in win32 console application, I could not use CString. and I only could use string.h, but vtk don't accept class string's output. </DIV>
<DIV>&nbsp;&nbsp;&nbsp; so&nbsp;who can tell me what I should do to correct this mistake? what is wrong with my VTK? do I need to recompile it again?</DIV>
<DIV>&nbsp;&nbsp;&nbsp; thank you for your help!</DIV>
<DIV>&nbsp;&nbsp;&nbsp; Mark</DIV>
<DIV>&nbsp;</DIV>
<DIV>PS. my original codes:</DIV>
<DIV>#include "vtkStdString.h"</DIV>
<DIV>vtkStdString str;</DIV>
<DIV>&nbsp;&nbsp;&nbsp; str = NULL;</DIV>
<DIV>vtkScaledTextActor * text = vtkScaledTextActor::New();</DIV>
<DIV>&nbsp;&nbsp;&nbsp; text-&gt;SetInput(str);</DIV>
<DIV>&nbsp;</DIV>