SHStartNetConnectionDialogW function (shlobj_core.h)

[SHStartNetConnectionDialog is available for use in the operating systems specified in the Requirements section. It may be altered or unavailable in subsequent versions.]

Displays a general browsing dialog box for a network resource connection.

Syntax

SHSTDAPI SHStartNetConnectionDialogW(
  [in, optional] HWND    hwnd,
  [in, optional] LPCWSTR pszRemoteName,
                 DWORD   dwType
);

Parameters

[in, optional] hwnd

Type: HWND

A handle to the parent window.

[in, optional] pszRemoteName

Type: LPCTSTR

A pointer to a null-terminated character string that specifies the remote network name. This value can be set to NULL.

dwType

Type: DWORD

A bitfield that contains a set of flags that identify the type of resource that the dialog box is set to find. This value can contain one of the following values, defined in Winnetwk.h:

RESOURCETYPE_ANY (0x00000000)

All resources

RESOURCETYPE_DISK (0x00000001)

Disk resources

RESOURCETYPE_PRINT (0x00000002)

Print resources

Return value

Type: HRESULT

Always returns S_OK.

Remarks

Note

The shlobj_core.h header defines SHStartNetConnectionDialog as an alias which automatically selects the ANSI or Unicode version of this function based on the definition of the UNICODE preprocessor constant. Mixing usage of the encoding-neutral alias with code that not encoding-neutral can lead to mismatches that result in compilation or runtime errors. For more information, see Conventions for Function Prototypes.

Requirements

Requirement Value
Minimum supported client Windows XP [desktop apps only]
Minimum supported server Windows Server 2003 [desktop apps only]
Target Platform Windows
Header shlobj_core.h (include Shlobj.h, Shlobj_core.h)
Library Shell32.lib
DLL Shell32.dll (version 5.0 or later)