Hi, i am using SHBrowseForFolder() function to traverse through the local system drives and shared network drives. But if i select a shared network drive which is password protected it does not ask for username and password. Due to which i was unable to traverse the shared drive. Can anybody tell me how to unable this facility or how to capture the double click of mouse on the tree shown in Browse For Folder dialog. Thanks.
2. SHBrowseForFolder warning messages
Hi, i am using SHBrowseForFolder() function to traverse through the local system drives and shared network drives. But if i select a shared network drive which is password protected it does not ask for username and password. Due to which i was unable to traverse the shared drive. Can anybody tell me how to unable this facility or how to capture the double click of mouse on the tree shown in Browse For Folder dialog. Thanks.
4. How to get full directory path from SHBrowseForFolder()
5. SHBrowseForFolder Subclassing.
I would like to change the name of the "cancel" button. Is that possible with Subclassing, Superclassing, etc.? ...Bruce
7. SHBrowseForFolder parent window
I'm developing an application in C++ using VS.net. I need a browser to return a folder that the user selects. SHBrowseForFolder seems to do the trick in most instances. I have one place that it fails. During the CWinApp::InitInstance() method the m_hWnd of the main window's parent frame window (GetMainWindow()->GetParentFrame()->m_hWnd;) is not setup yet. The BrowseInfo::hwndOwner requires it. When I create a CDialog at this point it only requires a pointer to the CFrameWnd and it works fine. Any ideas how I can get around this? Thanks, Neil