如何读出文本文件的前18个字符?
我是这样做的:
char* pszFilename="d:\\jinfile.txt";
CFile myFile;
CFileException fileExcept;
CString str01;
void* lpBuf=(void*)&str01;
UINT fileLong=myFile.Read(lpBuf,18);
AfxMessageBox(str01);
一运行,就出错。我该怎样做?
[此贴子已经被作者于2006-6-9 14:24:15编辑过]