posts - 131, comments - 12, trackbacks - 0, articles - 0
  C++博客 :: 首页 :: 新随笔 :: 联系 :: 聚合  :: 管理
转载请注明出处谢谢:
http://www.cppblog.com/lanshengsheng/archive/2012/11/28/195760.html

 char m_otherdbpath[MAX_PATH];

HWND pathhWnd=GetSafeHwnd();
BROWSEINFO bi;
LPITEMIDLIST pidl;
bi.hwndOwner = this->m_hWnd;
bi.pidlRoot = NULL;
bi.pszDisplayName = m_otherdbpath;
bi.lpszTitle = "选择输出文件路径";
bi.ulFlags = BIF_RETURNONLYFSDIRS;
bi.lpfn = NULL;
bi.lParam = NULL;
bi.iImage = NULL;
if((pidl = SHBrowseForFolder(&bi)) != NULL)
{
if(SUCCEEDED(SHGetPathFromIDList(pidl, m_otherdbpath)))//得到文件夹的全路径,不要的话,只得本文件夹名
{
m_edit_dbotherpath.SetWindowText(m_otherdbpath);
}
}

只有注册用户登录后才能发表评论。
网站导航: 博客园   IT新闻   BlogJava   知识库   博问   管理