FindWindowW (coredll)
Last changed: -194.213.203.68

.
Summary
The function retrieves the handle to the top-level window whose class name and window name match the specified strings. This function does not search child windows.

C# Signature:

[DllImport("coredll.dll", EntryPoint="FindWindowW", SetLastError=true)]
private static extern IntPtr FindWindowCE(string lpClassName, string lpWindowName);

VB Signature:

Declare Function FindWindowW Lib "coredll.dll" (TODO) As TODO

User-Defined Types:

None.

Alternative Managed API:

Do you know one? Please contribute it!

Notes:

Taken from openNetCF in OpenNETCF.Win32.Core

Tips & Tricks:

Can be used to hide the start bar and start menu.

Sample Code:

// Find the window handle to the Start Bar

hWnd = FindWindowW("HHTaskBar", null);

Documentation
FindWindowW on MSDN