Click here to Skip to main content
15,914,225 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: displaying bitmaps Pin
Amr Shahin29-Mar-06 1:31
Amr Shahin29-Mar-06 1:31 
GeneralRe: displaying bitmaps Pin
Ștefan-Mihai MOGA1-Apr-06 4:55
professionalȘtefan-Mihai MOGA1-Apr-06 4:55 
QuestionA very big problem Pin
Waldermort27-Mar-06 20:25
Waldermort27-Mar-06 20:25 
AnswerRe: A very big problem Pin
lastgen27-Mar-06 20:34
lastgen27-Mar-06 20:34 
AnswerRe: A very big problem Pin
lastgen27-Mar-06 20:35
lastgen27-Mar-06 20:35 
AnswerRe: A very big problem Pin
lastgen27-Mar-06 20:37
lastgen27-Mar-06 20:37 
AnswerRe: A very big problem Pin
John R. Shaw27-Mar-06 21:18
John R. Shaw27-Mar-06 21:18 
GeneralRe: A very big problem Pin
Waldermort27-Mar-06 21:49
Waldermort27-Mar-06 21:49 
Like I said the solution is simple, I just need to find the IME window and check if it is open.

Finding the window is not so simple as searching for the window title, since all the IME really is is an edit box which floats around on the screen positioning itself (usually) over the caret. This actually changes from system to system, depending on the IME version, OS and users settings.

the solution was infact very simple, and I blame myself for not seeing it in the hundreds of IME specific messages and commands.
HIMC hImc = ImmGetContext(hEdit);
if(ImmGetOpenStatus(hImc) )
            // IME window is open
    return false;

Questionblond question - fatal error C1010: unexpected end of file while looking for precompiled header directive Pin
Abu Mami27-Mar-06 19:33
Abu Mami27-Mar-06 19:33 
AnswerRe: blond question - fatal error C1010: unexpected end of file while looking for precompiled header directive Pin
Nibu babu thomas27-Mar-06 19:40
Nibu babu thomas27-Mar-06 19:40 
GeneralRe: blond question - fatal error C1010: unexpected end of file while looking for precompiled header directive Pin
Abu Mami27-Mar-06 19:45
Abu Mami27-Mar-06 19:45 
GeneralRe: blond question - fatal error C1010: unexpected end of file while looking for precompiled header directive Pin
Nibu babu thomas27-Mar-06 20:00
Nibu babu thomas27-Mar-06 20:00 
GeneralRe: blond question - fatal error C1010: unexpected end of file while looking for precompiled header directive Pin
Abu Mami27-Mar-06 21:15
Abu Mami27-Mar-06 21:15 
AnswerRe: blond question - fatal error C1010: unexpected end of file while looking for precompiled header directive Pin
Vinaya27-Mar-06 20:39
Vinaya27-Mar-06 20:39 
GeneralRe: blond question - fatal error C1010: unexpected end of file while looking for precompiled header directive Pin
Abu Mami27-Mar-06 21:16
Abu Mami27-Mar-06 21:16 
QuestionHow to register DLL(ATL) under VS2005? Pin
Syouki_kou27-Mar-06 18:57
Syouki_kou27-Mar-06 18:57 
AnswerRe: How to register DLL(ATL) under VS2005? Pin
Syouki_kou27-Mar-06 20:43
Syouki_kou27-Mar-06 20:43 
GeneralRe: How to register DLL(ATL) under VS2005? Pin
Syouki_kou21-Jun-06 16:16
Syouki_kou21-Jun-06 16:16 
QuestionAccessing Activex control methods from static functions?? Pin
vanip27-Mar-06 18:45
vanip27-Mar-06 18:45 
AnswerRe: Accessing Activex control methods from static functions?? Pin
Nibu babu thomas27-Mar-06 19:05
Nibu babu thomas27-Mar-06 19:05 
GeneralRe: Accessing Activex control methods from static functions?? Pin
vanip27-Mar-06 20:36
vanip27-Mar-06 20:36 
AnswerRe: Accessing Activex control methods from static functions?? Pin
Vinaya27-Mar-06 19:05
Vinaya27-Mar-06 19:05 
AnswerRe: Accessing Activex control methods from static functions?? Pin
Roger Stoltz27-Mar-06 21:11
Roger Stoltz27-Mar-06 21:11 
GeneralRe: Accessing Activex control methods from static functions?? Pin
vanip27-Mar-06 20:34
vanip27-Mar-06 20:34 
GeneralRe: Accessing Activex control methods from static functions?? Pin
vanip27-Mar-06 22:10
vanip27-Mar-06 22:10 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.