What is command routing in VC++

Answers were Sorted based on User's Feedback



What is command routing in VC++..

Answer / geetha

command routing is passing the command to command targeted
objects until the comand is handled.If no command targeted
objects handle the command finally it reaches the
application object which by default ignores the command.

the above answer is different scenarios of command routing.

Is This Answer Correct ?    16 Yes 2 No

What is command routing in VC++..

Answer / indira

This goes in SDI.....

when an event occurs first the command goes to frame, frame
passes it to view, if it doesnt handle the event it passes
to document, if it also doesnt handle it again passes to
doctemplate. if it doesnt handles it returns false to
document, document returns false to view, view also returns
false to frame then frame handles the event, if not it
passes to application object, if it also doesnt handle
default window procedure will handle.

Is This Answer Correct ?    4 Yes 1 No

What is command routing in VC++..

Answer / khan

in SDI:
View -> Doc -> FrameWnd -> App.

In MDI:
CView->CDocument->CMDIChildWnd ->CMDIFrameWnd -> CWinApp.

Is This Answer Correct ?    8 Yes 6 No

Post New Answer

More VC++ AllOther Interview Questions

How do I uninstall vc++ 2015?

0 Answers  


What is the return value when the InsertItem function fails?

2 Answers  


A file a.cpp & B.cpp are complied & linked together in VC++ file a is something like int a =100;, File B is something like extern a; main() { printf("%d",a); }what will be the output.a)100,b)linker error,c)complier error etc etc.

3 Answers   Honeywell,


Name the three types of loops used in C++ programs?

4 Answers  


#include<stdio.h>int(){int a,*b,**c,***d,****e; a=10;b=&a;c=&b;d=&c;e=&c;printf("a=%d b=%u c=%u d=% e=%u",a,b,c,d,e);printf ("%d%d%d\n",a,a+?*b,**c+***d+,****e);return0;}

1 Answers  






What is visual c++ 2008 redistributable x64?

0 Answers  


What is persistence?

3 Answers  


What is cwinthread class?

0 Answers  


Name the three attributes of a pen?

1 Answers  


What Is Your Greatest Weakness?

4 Answers   Apple, Infosys, IOCL, Servion, TCS, VisionTek,


What is ole? How do you handle drag and drop in ole?

0 Answers  


Explain some of commonly used methods provided by iunknown.

0 Answers  


Categories