代码搜索:SendMessage
找到约 3,804 项符合「SendMessage」的源代码
代码结果 3,804
www.eeworm.com/read/344090/11909185
txt gettopwindowcaption.txt
Declare Function GetForegroundWindow Lib "user32.dll" () As Long
Const GW_HWNDNEXT = 2
Const WM_GETTEXT = &HD
Const WM_GETTEXTLENGTH = &HE
Declare Function SendMessage Lib "user32" Alias "SendMess
www.eeworm.com/read/173526/9652951
bas modquestion.bas
Attribute VB_Name = "Module1"
'移动没标题的窗口
Public Declare Function ReleaseCapture Lib "user32" () As Long
Public Declare Function SendMessage Lib "user32" Alias "SendMessageA" (ByVal hwnd As Long,
www.eeworm.com/read/27451/865369
txt d026.bmp.txt
个成员函数用于向本窗口发送消息,函数的说明如下:
LRESULT SendMessage( UINT message, WPARAM wParam = 0, LPARAM lParam = 0 );
BOOL PostMessage( UINT message, WPARAM wParam = 0, LPARAM lParam = 0 );
LRESULT SendDlgItemMessag
www.eeworm.com/read/37216/900650
txt d026.bmp.txt
个成员函数用于向本窗口发送消息,函数的说明如下:
LRESULT SendMessage( UINT message, WPARAM wParam = 0, LPARAM lParam = 0 );
BOOL PostMessage( UINT message, WPARAM wParam = 0, LPARAM lParam = 0 );
LRESULT SendDlgItemMessag
www.eeworm.com/read/171428/9756522
bas module.bas
Attribute VB_Name = "Module1"
Const EM_UNDO = &HC7
Private Declare Function SendMessage Lib "user32" Alias "SendMessageA" (ByVal hWnd As Long, ByVal wMsg As Long, ByVal wParam As Long, lParam As Any
www.eeworm.com/read/493448/6393426
h resource.h
//{{NO_DEPENDENCIES}}
// Microsoft Developer Studio generated include file.
// Used by GrpsTest.rc
//
#define IDM_ABOUTBOX 0x0010
#define IDD_ABOUTBOX 100
#
www.eeworm.com/read/389974/8490695
c kkem.c
#include "cnc.h"
#define USER_macro_process(num) SendMessage(hwndUSER,WM_USER,num,0L)
static CNCpolar_t CNC_polar; /* polar parameter */
static CNCpolar_t CNC_rotate; /* rotat
www.eeworm.com/read/389970/8490726
c trace.c
#include "cnc.h"
#define USER_macro_process(num) SendMessage(hwndUSER,WM_USER,num,0L)
static CNCpolar_t CNC_polar; /* polar parameter */
static CNCpolar_t CNC_rotate; /* rotat
www.eeworm.com/read/151447/12210369
txt vc编程指南68篇(2).txt
9-16: 对窗口的 控制
9. 如何改变窗口的 图标?
向窗口发送 WM_SECTION消息。
Example:
HICON hIcon=AfxGetApp() ->LoadIcon(IDI_ICON);
ASSERT(hIcon);
AfxGetMainWnd() ->SendMessage(WM_SE