Shell32SHFindFiles Method
Displays the Search window UI.
Namespace: DevCase.Win32.NativeMethodsAssembly: DevCase.net48 (in DevCase.net48.dll) Version: 6.0.0.0 (6.0)
XMLNS for XAML: Not mapped to an xmlns.
[DllImportAttribute("Shell32.dll")]
public static bool SHFindFiles(
IntPtr pidlFolder,
[OptionalAttribute] IntPtr reserved
)
<DllImportAttribute("Shell32.dll">]
Public Shared Function SHFindFiles (
pidlFolder As IntPtr,
<OptionalAttribute> reserved As IntPtr
) As Boolean
Dim pidlFolder As IntPtr
Dim reserved As IntPtr
Dim returnValue As Boolean
returnValue = Shell32.SHFindFiles(pidlFolder,
reserved)
public:
[DllImportAttribute(L"Shell32.dll")]
static bool SHFindFiles(
IntPtr pidlFolder,
[OptionalAttribute] IntPtr reserved
)
[<DllImportAttribute("Shell32.dll")>]
static member SHFindFiles :
pidlFolder : IntPtr *
[<OptionalAttribute>] reserved : IntPtr -> bool
No code example is currently available or this language may not be supported.
- pidlFolder IntPtr
-
The folder from which to start the search.
This folder appears in the Look in: box in the Search window.
This folder and all of its subfolders are searched unless users choose other options in the
Search window's More Advanced Options.
This value can be Zero.
- reserved IntPtr (Optional)
-
This parameter is not used and must be set to Zero.
Boolean
Returns
if successful in displaying the Search window;
otherwise
.