A
AC
Hi
I need code to open some sort of browse for folder dialog. Currently
I use what most people seem to recommend:
Private Declare Function SHBrowseForFolder Lib "shell32.dll" Alias _
"SHBrowseForFolderA" (lpBrowseInfo As BROWSEINFO) _
As Long
I would like 2 "extras" however.
1. I would like to be able to set the initial directory the browse
folder dialog opens to. This needs to still allow the user to
navigate up to higher folders in the tree than the initial dir [I saw
a suggestion on the net but it did not allow to navigate above the
initial dir]
2. I would like the user to be able to Add a new folder if they want
to while navigating the dialog. You often see this on saveAs dialogs
as a button showing a folder icon with a small star in the top corner.
A v.good example of this dialog turns up if you open an Outlook email
with multiple attachments, and click File-->SaveAttachments --> and
then select all the attachments.
Is there something out there which I can use?
Thanks
AndyC
I need code to open some sort of browse for folder dialog. Currently
I use what most people seem to recommend:
Private Declare Function SHBrowseForFolder Lib "shell32.dll" Alias _
"SHBrowseForFolderA" (lpBrowseInfo As BROWSEINFO) _
As Long
I would like 2 "extras" however.
1. I would like to be able to set the initial directory the browse
folder dialog opens to. This needs to still allow the user to
navigate up to higher folders in the tree than the initial dir [I saw
a suggestion on the net but it did not allow to navigate above the
initial dir]
2. I would like the user to be able to Add a new folder if they want
to while navigating the dialog. You often see this on saveAs dialogs
as a button showing a folder icon with a small star in the top corner.
A v.good example of this dialog turns up if you open an Outlook email
with multiple attachments, and click File-->SaveAttachments --> and
then select all the attachments.
Is there something out there which I can use?
Thanks
AndyC