SendMessage (user32)
Last changed: thediscover22450@gmail.com-92.139.119.87

.
Summary
Sends the specified message to a window or windows.

C# Signature:

[DllImport("user32.dll")]
static extern IntPtr SendMessage(IntPtr hWnd, uint Msg, UIntPtr wParam,
   IntPtr lParam);

VB Signature:

Declare Function SendMessage Lib "user32.dll" (ByVal hWnd As IntPtr, ByVal Msg As Integer,
   ByVal wParam As IntPtr, ByVal lParam As IntPtr) As IntPtr

User-Defined Types:

None.

Notes:

Parameters

hWnd can be set using the Handle property of a Control. Msg constants can be found at http://www.codeproject.com/csharp/cswindowsmessages.asp.

Tips & Tricks:

Example useage to enumerate windows, and send a message to one (in C#): http://www.sloppycode.net/sloppycode/Article-104.html

Sample Code:

private const int WM_NCPAINT = 0x0085;

// Tell ourselves to paint our border

private void foo()

{

    SendMessage(this.Handle,WM_NCPAINT,new IntPtr(0),new IntPtr(0));

}

Alternative Managed API:

Do you know one? Please contribute it!

Documentation
SendMessage on MSDN

(http://msdn.microsoft.com/library/default.asp?url=/library/en-us/winui/winui/windowsuserinterface/windowing/messagesandmessagequeues/messagesandmessagequeuesreference/messagesandmessagequeuesfunctions/sendmessage.asp)