Browse for folder
-
I use SHBrowseForFolder to display folder select dialog. How detect folder change (create new, delete, ...) while this dialog displaying. Thank for your answer.
-
I use SHBrowseForFolder to display folder select dialog. How detect folder change (create new, delete, ...) while this dialog displaying. Thank for your answer.
Can you be more specific.
_**
**_
WhiteSky
-
I use SHBrowseForFolder to display folder select dialog. How detect folder change (create new, delete, ...) while this dialog displaying. Thank for your answer.
To update folder dialog, you can do follow: Use SHGetPathFromIDList( m_bi.pidlRoot, pszPath ) to get root folder path Use IShellFolder::ParseDisplayName to convert root folder path to LPITEMIDLIST (pidlRoot) Assign this pointer (pidlRoot) to m_bi.pidlRoot: m_bi.pidlRoot = pidlRoot; to refresh folder dialog. This code i didn't test, but i think it can do.:-D
----------------- Best Regards, Le Thanh Cong
-
Can you be more specific.
_**
**_
WhiteSky
I use SHBrowseForFolder to display BrowforFolder dialog box. And i create a button to create new folder. Then, i don't know how to refresh the BrowseforFolder dialog box to update this folder i've created. Yes, i know in SHBrowseForFolder has the new style dialog which may help us to create new folder. But i want to create by my self and update to BrowforFolder dialog box is displyaing. thank for your help.
-
I use SHBrowseForFolder to display BrowforFolder dialog box. And i create a button to create new folder. Then, i don't know how to refresh the BrowseforFolder dialog box to update this folder i've created. Yes, i know in SHBrowseForFolder has the new style dialog which may help us to create new folder. But i want to create by my self and update to BrowforFolder dialog box is displyaing. thank for your help.
Hope I understood your question if you want to insert your buttons to SHBrowseForFolder for update or delete I see exmples of SHBrowseForFolder on codeproject
_**
**_
WhiteSky