IVsBrowseProjectLocation::BrowseProjectLocation Method (String^, String^)
Visual Studio 2015
Presents a browse dialog box for finding the location of a new project.
Assembly: Microsoft.VisualStudio.Shell.Interop.8.0 (in Microsoft.VisualStudio.Shell.Interop.8.0.dll)
int BrowseProjectLocation(
String^ pszStartDirectory,
[OutAttribute] String^% pbstrProjectLocation
)
Parameters
- pszStartDirectory
-
Type:
System::String^
[in] String containing the starting directory.
- pbstrProjectLocation
-
Type:
System::String^
[out] String containing the full path to the chosen location.
Return Value
Type: System::Int32If the method succeeds, it returns S_OK. If it fails, it returns an error code.
From vsshell80.idl:
C++ HRESULT IVsBrowseProjectLocation::BrowseProjectLocation([in] LPCOLESTR pszStartDirectory, [out] BSTR *pbstrProjectLocation);
Show: