how many types of messages are their

Answers were Sorted based on User's Feedback



how many types of messages are their..

Answer / sahadev tarei

2 types(queued & nonqueued)

queuedd-posted to message queue(keyboard,mouse,timer,close)
nonqueuedd-posted to window function(Other rest message)

actually 200 different messages that window can send.

Is This Answer Correct ?    10 Yes 1 No

how many types of messages are their..

Answer / a_l_soni

1. Windows messages: This includes primarily those messages
beginning with the WM_ prefix, except for WM_COMMAND.
Windows messages are handled by windows and views. These
messages often have parameters that are used in determining
how to handle the message.

2. Control notifications: This includes WM_COMMAND
notification messages from controls and other child windows
to their parent windows. For example, an edit control sends
its parent a WM_COMMAND message containing the EN_CHANGE
control-notification code when the user has taken an action
that may have altered text in the edit control. The
window's handler for the message responds to the
notification message in some appropriate way, such as
retrieving the text in the control.

3. Command messages: This includes WM_COMMAND notification
messages from user-interface objects: menus, toolbar
buttons, and accelerator keys. The framework processes
commands differently from other messages, and they can be
handled by more kinds of objects, as explained in Command
Targets.

Is This Answer Correct ?    10 Yes 3 No

how many types of messages are their..

Answer / suganya nataraj

Window Messages
Command Messages
User Interface Update Command Messages
User Defined Messages
Event Notification Messages
Custom Control Messages
System-Registered Messages

Is This Answer Correct ?    5 Yes 0 No

how many types of messages are their..

Answer / surendra mishra

Two types of message are there
1> Windows defined and
2> User defined.

Is This Answer Correct ?    5 Yes 1 No

Post New Answer

More MFC Interview Questions

Name the Synchronization objects?

2 Answers  


What is the base class for most MFC classes?

7 Answers   CMC, Siemens,


if no message handler is available for a message then will deal with the message ? does window proving any default mechanism?

2 Answers   Patni,


How to find the mouse entering an image?..while entering need to display next image...

4 Answers  


What is model and modeless dialog box ? Give some examples?

2 Answers   Mphasis,






How to convert the content of buffer into lower case character.

3 Answers   E Logic,


How can we create thread in MFC framework?

3 Answers  


How to update all the views whenver document got updated ?

1 Answers  


1)How to load an icon on a button as Dynamically ?

1 Answers   HCL,


If i derive a new class from CObject what are the basic features my derived wil get ?

4 Answers   Microsoft,


what is the use of Mutex and critical section

2 Answers  


Explain StretchBlt and BitBlt

1 Answers  


Categories