tags:

views:

29

answers:

1

Hi, I'm trying to change the input mode to a given window. Searching i found the Edit_SetInputMode function, but when i run it, it always returns 0 ( fails) . The MSDN documentation doesn't seem be to revealing... Any ideas anyone

Thank you

Dan

A: 

The correct terminology is probably focus: See SetFocus


Oh! I see where you are coming from. There is no such thing as Edit_SetInputMode - unless you are developing for embedded Windows that is.

Win32 "Desktop" applications get to use this set of Edit_xxx messages.

Chris Becke
i don't think that's what i need - if i'm not wrong your answer will only force focus on my window, but i actually want to change the input mode (from numeric/textual/ and so on... )thanks anyway though
dan