WM_IME_SELECT

This message is sent to an application when the system is about to change the current IME. An application that has created an IME window should pass this message to that window so that it can retrieve the keyboard layout handle for the newly selected IME.

fSelect = (BOOL) wParam; 
hKL = (HANDLE) lParam;

Parameters

  • fSelect
    Boolean that is set to TRUE if the specified IME is selected, or to FALSE if the specified IME is no longer selected.
  • hKL
    Handle to the keyboard layout associated with the IME.

Return Values

None

Remarks

The DefWindowProc function processes this message by passing the information to the default IME window.

Requirements

Runs on Versions Defined in Include Link to
Windows CE OS 2.1 and later Imm.h    

Note   This API is part of the complete Windows CE OS package as provided by Microsoft. The functionality of a particular platform is determined by the original equipment manufacturer (OEM) and some devices may not support this API.

See Also

DefWindowProc

 Last updated on Tuesday, July 13, 2004

© 1992-2000 Microsoft Corporation. All rights reserved.