Hi
I have this code:
CATCH(CArchiveException, arEx)
{
if(arEx->m_cause != CArchiveException::endOfFile)
{
// problem reading in from log file into variables
arEx->GetErrorMessage(szError, _MAX_PATH);
AfxMessageBox(szError, MB_OK|MB_ICONERROR);
bOK = FALSE;
}
bContinue = FALSE;
}
END_CATCH
The arEx->m_cause and all other bits inside show with the ~~~~ underneath. Why?
I am using the latest build.
Andrew