windows_programming_notes.nbk: Home | Index | Next Page: win32 msgs: WM_IME_ENDCOMPOSITION | Previous Page: win32 msgs: WM_IME_COMPOSITION


 win32 msgs: WM_IME_CONTROL

The WM_IME_CONTROL message directs the IME window to carry out the requested command. An application uses this message to control the IME window created by the application.

To send this message, call the SendMessage function with the following parameters.

    SendMessage( 
      HWND hWnd,              // handle to destination window 
      WM_IME_CONTROL,         // message to send
      WPARAM wParam,          // IME command
      LPARAM lParam           // command-specific data
    );

Parameters

Return Values

The message returns a command-specific value.

Requirements

  Windows NT/2000 or later: Requires Windows NT 4.0 or later.
  Windows 95/98/Me: Requires Windows 95 or later.
  Header: Declared in Imm.h; include Windows.h.

windows_programming_notes.nbk: Home | Index | Next Page: win32 msgs: WM_IME_ENDCOMPOSITION | Previous Page: win32 msgs: WM_IME_COMPOSITION


Notebook exported on Monday, 7 July 2008, 18:56:50 PM Eastern Daylight Time