常
常广荣
Unregistered / Unconfirmed
GUEST, unregistred user!
CFileDialog m_Dlg(TRUE,NULL,NULL,OFN_FILEMUSTEXIST | OFN_ALLOWMULTISELECT,"所有支持的文件(*.asf;*.avi;*.tds)|*.asf;*.avi;*.tds|asf文件(*.asf)|*.asf|avi文件(*.avi)|*.avi|tds文件(*.tds)|*.tds|所有文件(*.*)|*.*||",this); if(m_Dlg.DoModal() == IDOK) { CString strFile,strPath,strTime; CStringList strLst; const char *pFiles[1024]; unsigned long nSecond; for(POSITION pos = m_Dlg.GetStartPosition() ; pos != NULL; ) { strFile = m_Dlg.GetNextPathName(pos); strLst.AddTail(strFile); } int i = 0; for(pos = strLst.GetHeadPosition() ; pos != NULL ; ) { strFile = strLst.GetNext(pos); pFiles = strFile; i++; }}