Desktop Functions: Smart Device Functions:
|
SendMessage (user32)
C# Signature:
[DllImport("user32.dll")] VB Signature:
Declare Function SendMessage Lib "user32.dll" (ByVal hWnd As IntPtr, ByVal Msg As Integer, 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! Please edit this page!Do you have...
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). |
|