Click here to Skip to main content
15,896,063 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Clipping child windows Pin
John R. Shaw9-Aug-05 13:47
John R. Shaw9-Aug-05 13:47 
GeneralRe: Clipping child windows Pin
Jesper Knudsen9-Aug-05 20:35
Jesper Knudsen9-Aug-05 20:35 
GeneralRe: Clipping child windows Pin
John R. Shaw13-Aug-05 17:07
John R. Shaw13-Aug-05 17:07 
GeneralRe: Clipping child windows Pin
Jesper Knudsen17-Aug-05 1:31
Jesper Knudsen17-Aug-05 1:31 
GeneralWindows messages Pin
Ali Tavakol7-Aug-05 20:58
Ali Tavakol7-Aug-05 20:58 
GeneralRe: Windows messages Pin
khan++7-Aug-05 21:35
khan++7-Aug-05 21:35 
GeneralRe: Windows messages Pin
Ali Tavakol8-Aug-05 19:10
Ali Tavakol8-Aug-05 19:10 
GeneralRe: Windows messages Pin
John R. Shaw8-Aug-05 21:05
John R. Shaw8-Aug-05 21:05 
Actualy khan++ is (basicaly) correct!

Sending a message to the user via MessageBox() has nothing to do with sending messages such as WM_CHAR, within your application. Opening another window (or dialogbox, in this case) has nothing to do with sending command messages in the current interface thread. If you can resize the parent window of a message box while the message box is still open, then the window you are resizing is probably not the parent window of the message box (because a message box is modal).

Here is an important point: When you post a message it goes into the message que, when you send a message it is sent directly. What that means is that if you're processing a message and post anouther message it will be processed after you are done with the current message, if you send a message while you're processing the current message, then it will be sent directly (bypassing the message que). Therefore, you need to be carefull as to when and where you send messages, inorder to prevent locking up your program.


INTP
"The more help VB provides VB programmers, the more miserable your life as a C++ programmer becomes."
Andrew W. Troelsen
GeneralArabic text for Windows control classes Pin
Ali Tavakol7-Aug-05 20:41
Ali Tavakol7-Aug-05 20:41 
GeneralRe: Arabic text for Windows control classes Pin
ThatsAlok7-Aug-05 20:59
ThatsAlok7-Aug-05 20:59 
GeneralRe: Arabic text for Windows control classes Pin
John R. Shaw8-Aug-05 21:40
John R. Shaw8-Aug-05 21:40 
GeneralRe: Arabic text for Windows control classes Pin
Ali Tavakol10-Aug-05 23:09
Ali Tavakol10-Aug-05 23:09 
GeneralRe: Arabic text for Windows control classes Pin
John R. Shaw13-Aug-05 18:02
John R. Shaw13-Aug-05 18:02 
GeneralOpening a File/URL with default browser Pin
retro_coder7-Aug-05 20:31
retro_coder7-Aug-05 20:31 
GeneralRe: Opening a File/URL with default browser Pin
khan++7-Aug-05 20:51
khan++7-Aug-05 20:51 
GeneralRe: Opening a File/URL with default browser Pin
ThatsAlok7-Aug-05 20:54
ThatsAlok7-Aug-05 20:54 
GeneralRe: Opening a File/URL with default browser Pin
retro_coder7-Aug-05 21:10
retro_coder7-Aug-05 21:10 
GeneralRe: Opening a File/URL with default browser Pin
ThatsAlok7-Aug-05 20:53
ThatsAlok7-Aug-05 20:53 
Generalhelp me ..how to convert MFC application in activeX dll Pin
rajesh_kapure7-Aug-05 20:00
rajesh_kapure7-Aug-05 20:00 
GeneralRe: help me ..how to convert MFC application in activeX dll Pin
ThatsAlok7-Aug-05 20:31
ThatsAlok7-Aug-05 20:31 
QuestionWorking on POST method with BHO? Pin
nmhuy7-Aug-05 17:39
nmhuy7-Aug-05 17:39 
AnswerRe: Working on POST method with BHO? Pin
vishalmore7-Aug-05 21:12
vishalmore7-Aug-05 21:12 
AnswerRe: Working on POST method with BHO? Pin
Marc Soleda7-Aug-05 22:32
Marc Soleda7-Aug-05 22:32 
GeneralRe: Working on POST method with BHO? Pin
nmhuy9-Aug-05 8:36
nmhuy9-Aug-05 8:36 
GeneralRe: Working on POST method with BHO? Pin
Marc Soleda9-Aug-05 19:35
Marc Soleda9-Aug-05 19:35 

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.