无法引用"DirDialog.h"
今天使用时候,居然会提示:"fatal error C1083: Cannot open include file: 'DirDialog.h': No such file or directory"我在其他程序引用时候却是正常的?
void CTest_DownloadDlg::OnBSave()
{
CDirDialog dlg;
if (dlg.DoBrowse(this) == IDOK) {
m_sFileName = dlg.m_strPath;
UpdateData(FALSE);
}