开始是不能编译,看了这个文章后
http://support.microsoft.com/default.aspx?scid=kb;[LN];830482
编译成功了,

但是出现的异常不能捕获,怪啊。

 CFile m_cFile(L"\\setting.set",CFile::modeRead);
 if(m_cFile.m_hFile!=CFile::hFileNull){
  try{
   CArchive m_ar(&m_cFile,CArchive::load,512,buf);
   m_ar>>m_sServerIP>>m_sServerPort;//这里抛出的异常
   m_ar.Close();
  }catch (CArchiveException e) {
   AfxMessageBox(L"??");
  }
   m_cFile.Close();
  }


到现在还没有发现解决的办法,郁闷啊!