IVsSolution.CreateNewProjectViaDlg Method

Controls options for the Create New Project dialog box.

Namespace:  Microsoft.VisualStudio.Shell.Interop
Assembly:  Microsoft.VisualStudio.Shell.Interop (in Microsoft.VisualStudio.Shell.Interop.dll)

Syntax

'Declaration
Function CreateNewProjectViaDlg ( _
    pszExpand As String, _
    pszSelect As String, _
    dwReserved As UInteger _
) As Integer
int CreateNewProjectViaDlg(
    string pszExpand,
    string pszSelect,
    uint dwReserved
)
int CreateNewProjectViaDlg(
    [InAttribute] String^ pszExpand, 
    [InAttribute] String^ pszSelect, 
    [InAttribute] unsigned int dwReserved
)
abstract CreateNewProjectViaDlg : 
        pszExpand:string * 
        pszSelect:string * 
        dwReserved:uint32 -> int
function CreateNewProjectViaDlg(
    pszExpand : String, 
    pszSelect : String, 
    dwReserved : uint
) : int

Parameters

  • pszExpand
    Type: System.String

    [in] Tree view node that is selected.

  • pszSelect
    Type: System.String

    [in] List view item that is selected.

Return Value

Type: System.Int32
If the method succeeds, it returns S_OK. If it fails, it returns an error code.

Remarks

COM Signature

From vsshell.idl:

HRESULT IVsSolution::CreateNewProjectViaDlg(
   [in] LPCOLESTR pszExpand,
   [in] LPCOLESTR pszSelect,
   [in] DWORD dwReserved
);

This method brings up the New Project dialog box with the specified tree view node and list view item selected. Use this method to create a new project.

.NET Framework Security

See Also

Reference

IVsSolution Interface

Microsoft.VisualStudio.Shell.Interop Namespace