I was trying to format the string of type CString so that when you input for example
once upon a time in Mexico
it would return Once Upon A Time In Mexico
m_VideoName.Replace(m_VideoName[0],toupper(m_VideoName[0]));
for(int i=1; i<m_VideoName.GetLength(); i++)
{
if(isspace(m_VideoName[i]))
{
m_VideoName.Replace(m_VideoName[i+1],toupper(m_VideoName[i+1]));
}
}
however it keeps returning
Once UpOn A TIMe In MexIcO
Any help would be greatly appreciated