码迷,mamicode.com
首页 > 其他好文 > 详细

目录选择对话框(实用)

时间:2019-12-31 01:17:57      阅读:90      评论:0      收藏:0      [点我收藏+]

标签:ota   contains   format   folder   path   sys   pre   对话框   hwnd   

不多说,上代码:

 1 void C目录选择对话框Dlg::OnBnClickedButton1()
 2 {
 3     TCHAR szPath[MAX_PATH] = { 0 };
 4     BROWSEINFO mBroInfo = { 0 };/*Contains parameters for the SHBrowseForFolder function 
 5     and receives information about the folder selected by the user*/
 6     mBroInfo.hwndOwner = m_hWnd;
 7     ITEMIDLIST *pidl = SHBrowseForFolder(&mBroInfo);
 8     if (SHGetPathFromIDList(pidl, szPath)) {  //Converts an item identifier list to a file system path
 9         SetDlgItemText(IDC_EDIT1, szPath);
10     }
11     CoTaskMemFree(pidl);//释放ITEMIDLIST指针
12 }

目录选择对话框(实用)

标签:ota   contains   format   folder   path   sys   pre   对话框   hwnd   

原文地址:https://www.cnblogs.com/mktest123/p/12122200.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!