Click here to Skip to main content
15,906,624 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: want to add pictures of any type in a dialog box Pin
Mark Salsbery19-Sep-07 6:48
Mark Salsbery19-Sep-07 6:48 
GeneralRe: want to add pictures of any type in a dialog box Pin
David Crow19-Sep-07 6:53
David Crow19-Sep-07 6:53 
AnswerRe: want to add pictures of any type in a dialog box Pin
Hamid_RT19-Sep-07 7:29
Hamid_RT19-Sep-07 7:29 
Questionfatal error RC1015: cannot open include file 'winresrc.h' Pin
dadacncn19-Sep-07 3:17
dadacncn19-Sep-07 3:17 
AnswerRe: fatal error RC1015: cannot open include file 'winresrc.h' Pin
shir_k19-Sep-07 3:41
shir_k19-Sep-07 3:41 
GeneralRe: fatal error RC1015: cannot open include file 'winresrc.h' Pin
dadacncn19-Sep-07 3:57
dadacncn19-Sep-07 3:57 
QuestionHow to avoid flickering in list control Pin
shir_k19-Sep-07 2:46
shir_k19-Sep-07 2:46 
QuestionTo Erase a portion of a 2D graph Pin
danandu197319-Sep-07 2:41
danandu197319-Sep-07 2:41 
AnswerRe: To Erase a portion of a 2D graph Pin
Cedric Moonen19-Sep-07 3:16
Cedric Moonen19-Sep-07 3:16 
Questionretain sort order Pin
Try19-Sep-07 2:25
Try19-Sep-07 2:25 
AnswerRe: retain sort order Pin
sheshidar19-Sep-07 2:28
sheshidar19-Sep-07 2:28 
GeneralRe: retain sort order Pin
Try19-Sep-07 19:54
Try19-Sep-07 19:54 
QuestionKeeping the DLL loaded Pin
SanjaySMK19-Sep-07 2:22
SanjaySMK19-Sep-07 2:22 
AnswerRe: Keeping the DLL loaded Pin
Jonathan [Darka]19-Sep-07 2:29
professionalJonathan [Darka]19-Sep-07 2:29 
AnswerRe: Keeping the DLL loaded Pin
David Crow19-Sep-07 2:37
David Crow19-Sep-07 2:37 
AnswerRe: Keeping the DLL loaded Pin
nbugalia19-Sep-07 2:40
nbugalia19-Sep-07 2:40 
AnswerRe: Keeping the DLL loaded Pin
Hamid_RT19-Sep-07 7:33
Hamid_RT19-Sep-07 7:33 
QuestionCListCtrl Pin
josip cagalj19-Sep-07 2:08
josip cagalj19-Sep-07 2:08 
AnswerRe: CListCtrl Pin
sheshidar19-Sep-07 2:27
sheshidar19-Sep-07 2:27 
GeneralRe: CListCtrl Pin
josip cagalj19-Sep-07 2:32
josip cagalj19-Sep-07 2:32 
GeneralRe: CListCtrl Pin
Nelek19-Sep-07 2:58
protectorNelek19-Sep-07 2:58 
QuestionSent Message Pin
sunit519-Sep-07 1:56
sunit519-Sep-07 1:56 
AnswerRe: Sent Message Pin
Randor 19-Sep-07 2:11
professional Randor 19-Sep-07 2:11 
I am not sure what you mean by synchronized. Window messages are placed into a FIFO stack and each message has a priority level. They are processed and removed from the stack based on location in the stack and priority level of the message type.

This is a part of MS Windows that has evolved over the years, working slightly differently in older versions.

However with that being said, currently in Windows XP and Windows Vista The Send* message functions bypass the standard message que and are pushed onto a seperate FIFO stack of nonqueued messages. These messages are processed with higher priority than messages which are in the standard message que.

To read more about messages and message queues, the MSDN has an excellent article located here:

http://msdn2.microsoft.com/en-us/library/ms644927.aspx[^]

Best Wishes,
-Randor (David Delaune)
GeneralRe: Sent Message [modified] Pin
sunit519-Sep-07 2:35
sunit519-Sep-07 2:35 
GeneralRe: Sent Message Pin
sunit519-Sep-07 2:38
sunit519-Sep-07 2:38 

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.