MI-L MB: SHBrowseForFolder() Constants Definitions?

2003-11-08 Thread B. Thoen
I'm exploring the Windows API function SHBrowseForFolder() for a MapBasic app I'm developing, but the MSDN pages describing this function don't tell me the actual values for the constants (BIF_RETURNONLYFSDIRS, etc.) Anyone know where to find this info in the MSDN library web pages? - Bill Thoen

RE: MI-L MB: SHBrowseForFolder() Constants Definitions?

2003-11-08 Thread Warren Vick, Europa Technologies Ltd.
Hi Bill, >From SHLOBJ.H: // Browsing for directory. #define BIF_RETURNONLYFSDIRS 0x0001 // For finding a folder to start document searching #define BIF_DONTGOBELOWDOMAIN 0x0002 // For starting the Find Computer #define BIF_STATUSTEXT 0x0004 #define BIF_RETURNFSANCESTORS 0x0008 #defi

Re: MI-L MB: SHBrowseForFolder() Constants Definitions?

2003-11-08 Thread Trey Pattillo
Bill, www.allapi.net Great Website for VB related info download ApiGuide http://www.mentalis.org/agnet/appdown.shtml examples, explanations, you can add you own notes, like MB specific nice application, including some DotNet, search by name, etc and it even displays the library file the fun

Re: MI-L MB: SHBrowseForFolder() Constants Definitions?

2003-11-08 Thread Robert Crossley
Bill, attached is some code that deomstrates its use (VB), and has those constants. A great resource is AllApi.net. it has a downloadable guide that is quite comprehensive. Check it out. http://www.mentalis.org/agnet/apiguide.shtml R Private Type BrowseInfo hWndOwner As Long pIDLRo

RE: MI-L MB: SHBrowseForFolder() Constants Definitions?

2003-11-08 Thread Canfield, Andrew
You know I posted this example on 10/08/2002 to this very list and David Haycraft added some enhancements to it but here it is again(Browse for folder using MapBasic): -code- include "mapbasic.def" include "menu.def" include "icons.def" Define BIF_RETURNONLYFSD