IVsBrowseProjectLocation::BrowseProjectLocation Method (String^, String^)

 

Presents a browse dialog box for finding the location of a new project.

Namespace:   Microsoft.VisualStudio.Shell.Interop
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::Int32

If 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);
Return to top
Show: