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

What is the initial function to be called in MFC and what it will do

11 Answers   Infosys,


1)How to create ToolTip in MFC?

2 Answers  


Why not virtual functions to handle messages?

5 Answers  


What is the use of OninitDialog ?

11 Answers   HCL, Nagarro,


How many types of combo box are their

2 Answers   Aaditya Info Solutions, E Logic,






what is the updated verssion in vc++

3 Answers   Aspect,


What is the difference between the ASSERT and VERIFY macros?

4 Answers  


What is stack size in win32 program?

1 Answers   HCL,


1) Enable or disable a Cancel button at run time?

1 Answers   HCL,


I can i set size of integer variable should be fixed for different operating systems(Ex i want integer size is 2bytes in OS)

2 Answers   Invensys,


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?

1 Answers  


How do you change the properties for a tree view control that is part of the CTreeView class?

1 Answers  


Categories