关于CString的ReadString Find函数
while(file.ReadString(temp)){ //temp里面保存的是一行的值
{
sprintf(buffer,"信息文档为空,请稍后查询,谢谢使用!!!");//消息框提示!!
MessageBox(buffer);
}
if(temp.Find(temp1)!=0)
if(temp.Find(temp2)!=0)
if(temp.Find(temp3)!=0)
{
iFiles.open("c:\\dk\\ShiXiSearch.txt",ios::trunc);//如果文件存在就清除其内容,不存在就新建
iFiles<<"name\t"<<"num\t"<<"id\t"<<"pay\t"<<"outday\t"<<"BuZhu\t"<<"money"<<'\n'<<endl;
// iFiles<<name<<"\t"<<num<<"\t"<<id<<"\t"<<a[n+3]<<"\t"<<a[n+4]<<"\t"<<a[n+5]<<"\t"<<a[n+6]<<'\n'<<endl;
iFiles.close();
}
}