With a wizard I put a CStringArray within the application class "theApp". When I start the debugger I get the assertion failure before my code touches the CStringArray (as far as I know).
Here's the assertion failure:
Debug Assertion Failed!
Program:...\GapPlus.exe
File: afxcoll.inl
Line: 222
For information on...
The assertion is:
_AFXCOLL_INLINE CString CStringArray::GetAt(int nIndex) const
{ ASSERT(nIndex >= 0 && nIndex < m_nSize);
return m_pData[nIndex]; }
The watch pane gives me this info:
- theApp.m_siteArray {CStringArray}
+ CObject {CObject}
+ classCStringArray {"CStringArray"}
- m_pData 0x00000000 { ???}
m_pchData CXX0030: Error: expression cannot be evaluated
m_nSize 0
m_nMaxSize 0
m_nGrowBy 0
Here is the code I use after the assertion failure:
m_siteArray.SetSize(i, 250);
m_siteArray.SetAt(0, " "
;
Here's the declaration in the .h file:
CStringArray m_siteArray;
Am I doing something obviously wrong
Here's the assertion failure:
Debug Assertion Failed!
Program:...\GapPlus.exe
File: afxcoll.inl
Line: 222
For information on...
The assertion is:
_AFXCOLL_INLINE CString CStringArray::GetAt(int nIndex) const
{ ASSERT(nIndex >= 0 && nIndex < m_nSize);
return m_pData[nIndex]; }
The watch pane gives me this info:
- theApp.m_siteArray {CStringArray}
+ CObject {CObject}
+ classCStringArray {"CStringArray"}
- m_pData 0x00000000 { ???}
m_pchData CXX0030: Error: expression cannot be evaluated
m_nSize 0
m_nMaxSize 0
m_nGrowBy 0
Here is the code I use after the assertion failure:
m_siteArray.SetSize(i, 250);
m_siteArray.SetAt(0, " "
Here's the declaration in the .h file:
CStringArray m_siteArray;
Am I doing something obviously wrong