Hello,<br><br>I would like to add to Karl's reply.<br>You could define, if you wish to use MFC, an array like this<br>#include <AfxTempl.h><br><br>CArray<CString,LPCSTR> astrMyStringsArray;<br><br>. <br><br>If you wan't your code to run without MFC, you could write the following:<br><br>#pragma warning(disable: 4786)<br><br>#include "string"<br>#include "vector"<br><br>using namespace std;<br><br>vector<string> astrMyStringsArray;<br><br>You can heck out the STL tutorial on the MSDN about this.<br><br>All the Best,<br><br>Ami Tavory