Type a page name and press Enter. You'll jump to the page if it exists, or you can create it if it doesn't.
To create a page in a module other than shell32, prefix the name with the module name and a period.
<DllImport("shell32.dll", CharSet:=CharSet.Unicode, PreserveSig:=False)> _
Public Shared Sub SHCreateItemFromParsingName( _
<MarshalAs(UnmanagedType.LPWStr)> ByVal pszPath As String, _
ByVal pbc As IntPtr, _
<MarshalAs(UnmanagedType.LPStruct)> ByVal riid As Guid, _
<MarshalAs(UnmanagedType.Interface, IidParameterIndex:=2)> ByRef ppv As IShellItem)
<MarshalAs(UnmanagedType.Interface, IidParameterIndex:=2)> ByRef ppv As Test.IShellItem)
End Sub
User-Defined Types:
None.
Alternative Managed API:
Do you know one? Please contribute it!
Notes:
The type of the created COM object is usually an IShellItem instance; however, it does not have to be. (For example, you can ask for IShellItem2). To support different object types, change the type of the ppv parameter to match. Alternatively, specify a parameter of type object for ppv and perform the typecasting on return. The type of object returned in ppv will be the same as the type of interface given in the riid parameter.
None.
Tips & Tricks:
Please add some!
Sample Code:
IShellItem oItem;
SHCreateItemFromParsingName(path, IntPtr.Zero, typeof(IShellItem).GUID, out oItem);
Exposes methods that retrieve information about a Shell item. IShellItem and IShellItem2 are the preferred representations of items in any new code
3/3/2021 1:24:20 PM - -63.118.230.241
Please edit this page!
Do you have...
helpful tips or sample code to share for using this API in managed code?
corrections to the existing content?
variations of the signature you want to share?
additional languages you want to include?
Select "Edit This Page" on the right hand toolbar and edit it! Or add new pages containing supporting types needed for this API (structures, delegates, and more).