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 user32, prefix the name with the module name and a period.
// Overloads use on toolbar/rebar
[DllImport("user32.dll", CharSet=CharSet.Auto)]
static extern void SendMessage(IntPtr hWnd, int msg, int wParam, ref RECT lParam);
[DllImport("user32.dll", CharSet=CharSet.Auto)]
static extern int SendMessage(IntPtr hWnd, int msg, int wParam, ref POINT lParam);
[DllImport("user32.dll", CharSet=CharSet.Auto)]
static extern void SendMessage(IntPtr hWnd, int msg, int wParam, ref TBBUTTON lParam);
[DllImport("user32.dll", CharSet=CharSet.Auto)]
static extern void SendMessage(IntPtr hWnd, int msg, int wParam, ref TBBUTTONINFO lParam);
[DllImport("user32.dll", CharSet=CharSet.Auto)]
static extern void SendMessage(IntPtr hWnd, int msg, int wParam, ref REBARBANDINFO lParam);
VB Signature:
Declare Function SendMessage Lib "user32.dll" (ByVal hWnd As IntPtr, ByVal Msg As Integer,
ByVal wParam As UIntPtr, ByVal lParam As IntPtr) As IntPtr
' Overloads use on toolbar/rebar
<DllImport("user32.dll", CharSet=CharSet.Auto)> _
static extern void SendMessage(IntPtr hWnd, Integer msg, Integer wParam, RECT lParam)
Private Declare Unicode Function SendMessageW Lib "user32" (ByVal hWnd As HandleRef, ByVal msg As Int32, ByVal wParam As Int32, ByRef lparam As Int32) As Int32
Notes:
1) As the number of messages are varied, just keep overloading the function as you need.
//C#
//This sample first uses SendMessage and WM_GETTEXTLENGTH
//to get the length of the text and then it uses that value
//and SendMessage with WM_GETTEXT and a StringBuilder to
//extract the text.
public static String GetWindowText(IntPtr hWnd)
{
IntPtr txtLength;
IntPtr retValue;
IntPtr zeroVal = new IntPtr(0); // use the imutable singelton IntPtr.Zero instead
//Get the length of the text
txtLength = SendMessage(hWnd, WM_GETTEXTLENGTH, zeroVal, zeroVal);
//Setup the size of the sb
StringBuilder sb = new StringBuilder(txtLength.ToInt32() + 1);
//Get the text of the window/control t
retValue = SendMessage(hWnd,WM_GETTEXT,txtLength,sb); // must be txtLength + 1
//Return a string
return sb.ToString();
}
// C#
// This sample handles the WM_GETTEXTLENGTH and WM_GETTEXT
// messages in a standard WinForms Windows application.
// Use this code in any class that directly or indirectly
// derives from the Component class.
[System.Security.Permissions.PermissionSet(System.Security.Permissions.SecurityAction.Demand, Name = "FullTrust")]
protected override void WndProc(ref Message m)
{
switch (m.Msg)
{
case WM_GETTEXTLENGTH:
if (null != GetText())
{
m.Result = (IntPtr)GetText().Length;
}
else
{
m.Result = (IntPtr)0;
}
break;
case WM_GETTEXT:
String s = GetText();
if (null != s)
{
int len = s.Length;
Marshal.Copy(s.ToCharArray(), 0, m.LParam, Math.Min((int)m.WParam, len));
m.Result = (IntPtr)len;
}
else
{
m.Result = (IntPtr)0;
}
return;
// Pass any other messages to our base class
default:
base.WndProc(ref m);
break;
}
}
Alternative Managed API:
Do you know one? Please contribute it!..
The SendMessageCallback API
2/18/2010 2:43:09 AM - anfortas.geo@yahoo.com-216.204.61.86
The SendNotifyMessage API
7/30/2014 9:42:28 AM - Corvbreau@hotmail.com-137.61.234.225
The PostMessage API
4/2/2016 12:09:27 PM - -78.110.196.168
The PostThreadMessage API
11/30/2012 10:34:26 AM - -121.214.99.141
An IntPtr is a pointer to a memory location (unmanaged) that adapts to the platform it is running on (64-bit, etc.) UNLIKE a standard int/Integer. You should always use this type for unmanaged calls that require it, even though an int will appear to work on your development machine.
1/13/2008 4:00:13 AM - Damon Carr-72.43.165.29
TODO - a short description
3/16/2007 8:32:35 AM - anonymous
Click to read this page
6/25/2010 2:17:25 PM - -90.152.60.34
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).