Differ GetMessage, PostMessage & PeakMessage?
Answers were Sorted based on User's Feedback
Answer / boggarapu sateesh kumar
GetMessage function waits for a message to be placed in the
queue before returning.
PeekMessage function does not wait for a message to be
placed in the queue before returning.
The PostMessage function places (posts) a message in the
message queue associated with the thread that created the
specified window and then returns without waiting for the
thread to process the message.
| Is This Answer Correct ? | 16 Yes | 3 No |
Answer / krishna
GetMessage() will retrives the message from the running
message queue and The function dispatches incoming sent
messages until a posted message is available for retrieval.
PeekMEssage() retrieves the message from running message
queue but will not remove the message information from the
message queue.
PostMessage() Posts the message to the message queue and
returns.
| Is This Answer Correct ? | 8 Yes | 2 No |
Answer / sirama
GetMessage() Takes the message from "Message Queue" and
dispatches it to the Window Procedure. And the pointer
moves to the next message in the queue.
PeekMessage() does the same. But, this time, the pointer is
not moved to the next message in the Queue.
PostMessage() : See Krishna's Answer
| Is This Answer Correct ? | 3 Yes | 0 No |
Answer / rao naeem
PostMessage is used in Threading usually. to post a message
to Messaging Queue.
Get message is a blocking call it waits for the message
untill it recieve the message it was requiring
Peak message doesnt wait for the message particually it is
looking it just look if the particular message is not in the
queue it returns.
| Is This Answer Correct ? | 9 Yes | 7 No |
1)dynamic creation of a Button ?
How you create a button dynamically?
What is the difference between the Encapsulation and Abstraction
25 Answers HCL, Invensys, TCS, Wipro,
I have 2 threads. One thread prints odd numbers and the second thread prints even numbers. Now, I have to execute the threads alternatively so that i can output 1,2,3,4,5,6,..... write code for this?
what is the use of AFX_MANAGE_STATE ?
is there any class which is not derived from Cobject
What is the use of UpdateData funciton ?
if both base and derived class have the constructors if i create an object for derive class which class constructor is executed first
Tell me the work of HTREDUCE and HTZOOM
plzz tell me what we can do and dont in tally ERP & sap business one?
How can i change the color of a dropdowncombobox elements
1) Enable or disable a Cancel button at run time?