CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 5 of 5
  1. #1
    Join Date
    Feb 2007
    Posts
    247

    [RESOLVED] problem of "SHBrowseForFolder"

    hi all
    i want to disable network Folder/ or N/W location in the dialog .is there any flag to set

    with regards
    any help
    dingo

  2. #2

    Re: problem of "SHBrowseForFolder"

    Bif_dontgobelowdomain
    Best Api Monitor tool.
    Trace the target program automatically and monitor the parameters of all API and COM interfaces.

    Auto Debug for Windows 4.0
    Auto Debug for .Net
    http://www.autodebug.com/

  3. #3
    Join Date
    Feb 2007
    Posts
    247

    Re: problem of "SHBrowseForFolder"

    thaks for your information
    but still it is showing "My Network Places" in the tree view
    i have included " BIF_RETURNONLYFSDIRS|BIF_DONTGOBELOWDOMAIN" these styles

  4. #4

    Re: problem of "SHBrowseForFolder"

    BROWSEINFO bi = {0};
    TCHAR szFile[MAX_PATH];
    bi.pszDisplayName = szFile;
    bi.pidlRoot = (LPCITEMIDLIST )CSIDL_DRIVES;
    bi.ulFlags = 0;
    SHBrowseForFolder(&bi);
    Best Api Monitor tool.
    Trace the target program automatically and monitor the parameters of all API and COM interfaces.

    Auto Debug for Windows 4.0
    Auto Debug for .Net
    http://www.autodebug.com/

  5. #5
    Join Date
    Feb 2007
    Posts
    247

    Re: problem of "SHBrowseForFolder"

    thanks dear ..
    the problem is resolved

    once again a lot of thanks & regards
    dingo

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured