is this a direct copy / paste from VS6?
i have just tried this block, and it does fail. however, the code is incorrect:
int nSize = m_arrRowData.GetSize();
int nLen = 0;
CString strTemp; // missing semi colon
for(int i=0;i<nSize;i++)
{
strTemp = m_arrRowData.ElementAt(i);
nLen = strTemp.GetLength();. // stray dot here
for (int j=0;j<nLen;j++)
{
strTemp. //here I found the problem
}
}
when i add in the missing semi colon ctrl_space works for me.
using VS .NET 2003 and VAX 1246
on a side note, if you use the # button when posting, you can wrap the code in code tags, which helps to preserve the formatting.