MFC浏览文件

来源:互联网 发布:投资的网络销售好做吗 编辑:程序博客网 时间:2024/05/22 02:05
void CMFC_testDlg::OnBrowse()
{
 // TODO: Add your control notification handler code here
 CFileDialog dlg(TRUE,NULL,NULL,OFN_HIDEREADONLY,"All Files(*.*)|*.*||",AfxGetMainWnd());
    if (dlg.DoModal()==IDOK)
 {
  pathname=dlg.GetPathName();
  GetDlgItem(IDC_EDIT_FileAddress)->SetWindowText(pathname);
 }
}