ACiDXX писал(а):com.ms.win32.User32.SendMessage(hWin, sText, &HC, 0)
Интересно... А что, в 2008 студии это уже открытая функция?
И ты перепутал параметры.
MSDN писал(а):- Код: Выделить всё
lResult = SendMessage( // returns LRESULT in lResult
(HWND) hWndControl, // handle to destination control
(UINT) WM_SETTEXT, // message ID
(WPARAM) wParam, // = (WPARAM) () wParam;
(LPARAM) lParam // = (LPARAM) () lParam; );
wParam
This parameter is not used.
lParam
Pointer to a null-terminated string that is the window text.