Type a page name and press Enter. You'll jump to the page if it exists, or you can create it if it doesn't.
To create a page in a module other than shell32, prefix the name with the module name and a period.
{
// Browsing for directory.
private uint BIF_RETURNONLYFSDIRS = 0x0001; // For finding a folder to start document searching
private uint BIF_DONTGOBELOWDOMAIN = 0x0002; // For starting the Find Computer
private uint BIF_STATUSTEXT = 0x0004; // Top of the dialog has 2 lines of text for BROWSEINFO.lpszTitle and one line if
// this flag is set. Passing the message BFFM_SETSTATUSTEXTA to the hwnd can set the
// rest of the text. This is not used with BIF_USENEWUI and BROWSEINFO.lpszTitle gets
// all three lines of text.
private uint BIF_RETURNFSANCESTORS = 0x0008;
private uint BIF_EDITBOX = 0x0010; // Add an editbox to the dialog
private uint BIF_VALIDATE = 0x0020; // insist on valid result (or CANCEL)
private uint BIF_NEWDIALOGSTYLE = 0x0040; // Use the new dialog layout with the ability to resize
// Caller needs to call OleInitialize() before using this API
private uint BIF_USENEWUI = 0x0040 + 0x0010; //(BIF_NEWDIALOGSTYLE | BIF_EDITBOX);
private uint BIF_BROWSEINCLUDEURLS = 0x0080; // Allow URLs to be displayed or entered. (Requires BIF_USENEWUI)
private uint BIF_UAHINT = 0x0100; // Add a UA hint to the dialog, in place of the edit box. May not be combined with BIF_EDITBOX
private uint BIF_NONEWFOLDERBUTTON = 0x0200; // Do not add the "New Folder" button to the dialog. Only applicable with BIF_NEWDIALOGSTYLE.
private uint BIF_NOTRANSLATETARGETS = 0x0400; // don't traverse target as shortcut
[DllImport("shell32.dll")]
static extern IntPtr SHBrowseForFolder(ref BROWSEINFO lpbi);
public delegate int BrowseCallBackProc(IntPtr hwnd, int msg, IntPtr lp, IntPtr wp);
struct BROWSEINFO
{
public IntPtr hwndOwner;
public IntPtr pidlRoot;
public string pszDisplayName;
public string lpszTitle;
public uint ulFlags;
public BrowseCallBackProc lpfn;
public IntPtr lParam;
public int iImage;
}
public int OnBrowseEvent(IntPtr hwnd, int msg, IntPtr lp, IntPtr wp)
{
//...
return 1;
}
If using .net version 1.1 or greater, you can use System.Windows.Forms.FolderBrowserDialog instead -- as long as you are only browsing for folders! If you want to browse for computers or printers, the .Net version does not seem to support this.
The SHBrowseForFolder API
12/25/2012 2:22:16 PM - -71.212.36.53
Contains parameters for the SHBrowseForFolder function and receives information about the folder selected by the user.
2/7/2012 5:40:58 PM - -202.74.138.1
Please edit this page!
Do you have...
helpful tips or sample code to share for using this API in managed code?
corrections to the existing content?
variations of the signature you want to share?
additional languages you want to include?
Select "Edit This Page" on the right hand toolbar and edit it! Or add new pages containing supporting types needed for this API (structures, delegates, and more).