在保存对话框里设置多个扩展名
然后在代码里判断用户选择的扩展名格式,然后根据扩展名保存为不同格式...
给你贴一段我的代码:
CString Str;
CString name=g_DataPath+Str;//_T("*.lcd");
char szFilter[100]="Data File(*.lcd)|*.lcd|";
strcat(szFilter,"Excel File(*.xls)|*.xls|");
strcat(szFilter,"Text File(*.txt)|*.txt||");
// strcat(szFilter,"All File(*.*)|*.*||");
CFileDialog FileDLG(false,"LCD",name,OFN_HIDEREADONLY|OFN_OVERWRITEPROMPT,szFilter);
if(FileDLG.DoModal()==IDCANCEL) return;
name=FileDLG.GetPathName();
if(FileDLG.GetFileExt() == _T("txt"))
{
/* m_pLine[0]->*/SaveTxt(name,m_WaveLenOffset,m_NmPerPixel);
}
else if(FileDLG.GetFileExt() == _T("xls"))
{
// m_pLine[0]->SaveXls(name,m_WaveLenOffset,m_NmPerPixel);
/*m_pLine[0]->*/SaveTxt(name,m_WaveLenOffset,m_NmPerPixel);//Txt换扩展名即可成Excel文件
}
else if(FileDLG.GetFileExt() == _T("lcd"))
{
m_pLine[0]->Save(name);
}
else
AfxMessageBox(IsEnglish?"File Type Error!":"不支持文件类型!");