IVsSolution2::OpenSolutionViaDlg Method (String^, Int32)
Visual Studio 2015
Controls options for the Open Solution dialog box.
Assembly: Microsoft.VisualStudio.Shell.Interop (in Microsoft.VisualStudio.Shell.Interop.dll)
Parameters
- pszStartDirectory
-
Type:
System::String^
[in] Start directory pointed to by the Open Solution dialog box.
- fDefaultToAllProjectsFilter
-
Type:
System::Int32
[in] If true, then the All Project filter is defaulted to instead of the solution filter.
Return Value
Type: System::Int32If the method succeeds, it returns S_OK. If it fails, it returns an error code.
From vsshell.idl:
HRESULT IVsSolution2::OpenSolutionViaDlg( LPCOLESTR pszStartDirectory, BOOL fDefaultToAllProjectsFilter );
This method brings up the Open Solution dialog box. The user can then choose a solution or project to open. The solution or project is opened by this method before the method returns.
Show: